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

10 lines
242 B
C#

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