Almost finished #659

This commit is contained in:
Jamie.Rees 2016-11-07 17:21:05 +00:00
parent 367ca391b1
commit 0950f20278
14 changed files with 543 additions and 119 deletions

View file

@ -0,0 +1,11 @@
using System.Threading.Tasks;
using Octokit;
using PlexRequests.Core.Models;
namespace PlexRequests.Core
{
public interface IStatusChecker
{
Task<StatusModel> GetStatus();
}
}