Added the option to set a CP quality #38

This commit is contained in:
tidusjar 2016-03-19 00:16:44 +00:00
parent 4136116555
commit e34170f55a
9 changed files with 166 additions and 9 deletions

View file

@ -33,7 +33,8 @@ namespace PlexRequests.Api.Interfaces
{
public interface ICouchPotatoApi
{
bool AddMovie(string imdbid, string apiKey, string title, Uri baseUrl);
bool AddMovie(string imdbid, string apiKey, string title, Uri baseUrl, string profileID = default(string));
CouchPotatoStatus GetStatus(Uri url, string apiKey);
CouchPotatoProfiles GetProfiles(Uri url, string apiKey);
}
}