mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
12 lines
274 B
C#
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; }
|
|
}
|
|
} |