1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-29 02:57:15 +02:00
Sonarr/src/NzbDrone.Core/Indexers/IndexerDefinition.cs

11 lines
241 B
C#
Raw Normal View History

2013-09-22 08:20:26 +03:00
using NzbDrone.Core.ThingiProvider;
2013-02-21 10:07:34 +03:00
namespace NzbDrone.Core.Indexers
{
public class IndexerDefinition : ProviderDefinition
2013-02-21 10:07:34 +03:00
{
public bool Enable { get; set; }
public DownloadProtocol Protocol { get; set; }
2013-02-21 10:07:34 +03:00
}
}