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

11 lines
284 B
C#
Raw Normal View History

2016-12-23 21:45:24 +00:00
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; }
}
}