mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
11 lines
No EOL
219 B
C#
11 lines
No EOL
219 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Ombi.Api.Github.Models;
|
|
|
|
namespace Ombi.Api.Github
|
|
{
|
|
public interface IGithubApi
|
|
{
|
|
Task<List<CakeThemes>> GetCakeThemes();
|
|
}
|
|
} |