using System.Collections.Generic; using Lidarr.Api.V1.DownloadClient; using RestSharp; namespace NzbDrone.Integration.Test.Client { public class DownloadClientClient : ClientBase { public DownloadClientClient(IRestClient restClient, string apiKey) : base(restClient, apiKey) { } public List Schema() { var request = BuildRequest("/schema"); return Get>(request); } } }