1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00
Sonarr/NzbDrone.Core/Indexers/IndexerDefinition.cs

13 lines
325 B
C#
Raw Normal View History

2013-02-20 23:07:34 -08:00
using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Indexers
{
2013-04-07 00:30:37 -07:00
public class IndexerDefinition : ModelBase
2013-02-20 23:07:34 -08:00
{
public Boolean Enable { get; set; }
public String Name { get; set; }
2013-04-07 00:30:37 -07:00
public String Settings { get; set; }
public String Implementation { get; set; }
2013-02-20 23:07:34 -08:00
}
}