Radarr/src/NzbDrone.Core/Indexers/IndexerDefinition.cs

18 lines
504 B
C#
Raw Normal View History

2016-12-23 21:45:24 +00:00
using NzbDrone.Core.ThingiProvider;
2013-02-21 07:07:34 +00:00
namespace NzbDrone.Core.Indexers
{
public class IndexerDefinition : ProviderDefinition
2013-02-21 07:07:34 +00:00
{
public bool EnableRss { get; set; }
public bool EnableSearch { get; set; }
public DownloadProtocol Protocol { get; set; }
public bool SupportsRss { get; set; }
public bool SupportsSearch { get; set; }
2016-12-09 06:54:15 +00:00
public override bool Enable => EnableRss || EnableSearch;
public IndexerStatus Status { get; set; }
2013-02-21 07:07:34 +00:00
}
}