1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-26 01:37:07 +00:00
Sonarr/NzbDrone.Core/Indexers/IndexerDefinition.cs
Keivan Beigi 96990eabb3 indexers implementation is now separated from settings/definition
so we can have multiple newznab definitions.
2013-05-02 16:10:31 -07:00

13 lines
No EOL
325 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; }
public String Implementation { get; set; }
}
}