mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
12 lines
309 B
C#
12 lines
309 B
C#
using NzbDrone.Core.Indexers;
|
|
|
|
namespace NzbDrone.Api.DownloadClient
|
|
{
|
|
public class DownloadClientResource : ProviderResource<DownloadClientResource>
|
|
{
|
|
public bool Enable { get; set; }
|
|
public DownloadProtocol Protocol { get; set; }
|
|
public int Priority { get; set; }
|
|
}
|
|
}
|