Radarr/src/NzbDrone.Api/Indexers/IndexerResource.cs

15 lines
434 B
C#
Raw Normal View History

2016-12-23 21:45:24 +00:00
using NzbDrone.Core.Indexers;
namespace NzbDrone.Api.Indexers
{
2021-02-04 21:14:52 +00:00
public class IndexerResource : ProviderResource<IndexerResource>
{
public bool EnableRss { get; set; }
public bool EnableSearch { get; set; }
public bool SupportsRss { get; set; }
public bool SupportsSearch { get; set; }
public DownloadProtocol Protocol { get; set; }
public int Priority { get; set; }
}
2019-12-22 21:24:10 +00:00
}