Ombi/Ombi.Api.Interfaces/IRadarrApi.cs
tidusjar 2d0297231d Increased the delay for the Episode information api calls. #1163
Fixed the issue with notifications being slightly borked #1263

Fixed the issue for Radarr, the api changed again #1263
2017-03-17 20:58:53 +00:00

16 lines
No EOL
622 B
C#

using System;
using System.Collections.Generic;
using Ombi.Api.Models.Radarr;
using Ombi.Api.Models.Sonarr;
namespace Ombi.Api.Interfaces
{
public interface IRadarrApi
{
RadarrAddMovie AddMovie(int tmdbId, string title, int year, int qualityId, string rootPath, string apiKey, Uri baseUrl, bool searchNow = false);
List<RadarrMovieResponse> GetMovies(string apiKey, Uri baseUrl);
List<SonarrProfile> GetProfiles(string apiKey, Uri baseUrl);
SystemStatus SystemStatus(string apiKey, Uri baseUrl);
List<SonarrRootFolder> GetRootFolders(string apiKey, Uri baseUrl);
}
}