1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Core/Indexers/IndexerDefinition.cs

13 lines
325 B
C#
Raw Normal View History

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