Added different sonarr search commands.

#515
This commit is contained in:
tidusjar 2016-09-22 21:44:51 +01:00
parent b97e8d5cf7
commit a834da3990
8 changed files with 224 additions and 1 deletions

View file

@ -48,5 +48,7 @@ namespace PlexRequests.Api.Interfaces
SonarrEpisode UpdateEpisode(SonarrEpisode episodeInfo, string apiKey, Uri baseUrl);
SonarrAddEpisodeResult SearchForEpisodes(int[] episodeIds, string apiKey, Uri baseUrl);
Series UpdateSeries(Series series, string apiKey, Uri baseUrl);
SonarrSeasonSearchResult SearchForSeason(int seriesId, int seasonNumber, string apiKey, Uri baseUrl);
SonarrSeriesSearchResult SearchForSeries(int seriesId, string apiKey, Uri baseUrl);
}
}