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
233 B
C#
Raw Normal View History

2013-02-21 07:07:34 +00:00
using System;
using NzbDrone.Core.Datastore;
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 Boolean Enable { get; set; }
}
}