!wip work in progress for the theme presets

This commit is contained in:
Jamie 2017-11-06 16:30:44 +00:00
parent fa774784c0
commit c8f00c4e8a
11 changed files with 131 additions and 2 deletions

View file

@ -0,0 +1,10 @@
using System.Threading.Tasks;
using Ombi.Api.Github.Models;
namespace Ombi.Api.Github
{
public interface IGithubApi
{
Task<CakeThemesContainer> GetCakeThemes();
}
}