Radarr/src/NzbDrone.Integration.Test/Client/ReleaseClient.cs

14 lines
298 B
C#
Raw Permalink Normal View History

using Radarr.Api.V3.Indexers;
using RestSharp;
namespace NzbDrone.Integration.Test.Client
{
public class ReleaseClient : ClientBase<ReleaseResource>
{
2013-09-21 02:07:42 +00:00
public ReleaseClient(IRestClient restClient, string apiKey)
: base(restClient, apiKey)
{
}
}
}