mirror of
https://github.com/Lidarr/Lidarr
synced 2026-02-27 17:12:15 +01:00
13 lines
297 B
C#
13 lines
297 B
C#
using NzbDrone.Api.Commands;
|
|
using RestSharp;
|
|
|
|
namespace NzbDrone.Integration.Test.Client
|
|
{
|
|
public class CommandClient : ClientBase<CommandResource>
|
|
{
|
|
public CommandClient(IRestClient restClient, string apiKey)
|
|
: base(restClient, apiKey)
|
|
{
|
|
}
|
|
}
|
|
}
|