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

13 lines
325 B
C#
Raw Normal View History

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