1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/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
}
}