1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-01 12:45:03 +00:00
Sonarr/NzbDrone.Core/Indexers/IndexerDefinition.cs

11 lines
No EOL
233 B
C#

using System;
using NzbDrone.Core.Datastore;
using NzbDrone.Core.ThingiProvider;
namespace NzbDrone.Core.Indexers
{
public class IndexerDefinition : ProviderDefinition
{
public Boolean Enable { get; set; }
}
}