Radarr/NzbDrone.Core/Indexers/IndexerDefinition.cs

13 lines
325 B
C#
Raw Normal View History

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