1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 08:22:35 +01:00
Sonarr/NzbDrone.Core/Indexers/IndexerDefinition.cs
2013-04-07 00:30:37 -07:00

12 lines
274 B
C#

using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Indexers
{
public class IndexerDefinition : ModelBase
{
public Boolean Enable { get; set; }
public String Name { get; set; }
public String Settings { get; set; }
}
}