You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Api.CouchPotato/ICouchPotatoApi.cs

14 lines
591 B

using System.Threading.Tasks;
using Ombi.Api.CouchPotato.Models;
namespace Ombi.Api.CouchPotato
{
public interface ICouchPotatoApi
{
Task<bool> AddMovie(string imdbid, string apiKey, string title, string baseUrl, string profileId = null);
Task<CouchPotatoApiKey> GetApiKey(string baseUrl, string username, string password);
Task<CouchPotatoMovies> GetMovies(string baseUrl, string apiKey, string[] status);
Task<CouchPotatoProfiles> GetProfiles(string url, string apiKey);
Task<CouchPotatoStatus> Status(string url, string apiKey);
}
}