mirror of https://github.com/lidarr/Lidarr
21 lines
567 B
C#
21 lines
567 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Api.Episodes;
|
|
using RestSharp;
|
|
|
|
namespace NzbDrone.Integration.Test.Client
|
|
{
|
|
public class EpisodeClient : ClientBase<EpisodeResource>
|
|
{
|
|
public EpisodeClient(IRestClient restClient, string apiKey)
|
|
: base(restClient, apiKey, "episodes")
|
|
{
|
|
}
|
|
|
|
public List<EpisodeResource> GetEpisodesInSeries(int seriesId)
|
|
{
|
|
var request = BuildRequest("?seriesId=" + seriesId.ToString());
|
|
return Get<List<EpisodeResource>>(request);
|
|
}
|
|
}
|
|
}
|