mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
96990eabb3
so we can have multiple newznab definitions.
13 lines
325 B
C#
13 lines
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; }
|
|
}
|
|
} |