mirror of
https://github.com/Radarr/Radarr
synced 2025-02-07 15:23:48 +00:00
13 lines
297 B
C#
13 lines
297 B
C#
using NzbDrone.Api.Indexers;
|
|
using RestSharp;
|
|
|
|
namespace NzbDrone.Integration.Test.Client
|
|
{
|
|
public class ReleaseClient : ClientBase<ReleaseResource>
|
|
{
|
|
public ReleaseClient(IRestClient restClient, string apiKey)
|
|
: base(restClient, apiKey)
|
|
{
|
|
}
|
|
}
|
|
}
|