using System.Collections.Generic; using Prowlarr.Api.V1.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); } } }