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