Sonarr/src/NzbDrone.Api/DownloadClient/DownloadClientResource.cs

11 lines
284 B
C#

using NzbDrone.Core.Indexers;
namespace NzbDrone.Api.DownloadClient
{
public class DownloadClientResource : ProviderResource
{
public bool Enable { get; set; }
public DownloadProtocol Protocol { get; set; }
public int Priority { get; set; }
}
}