mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-28 10:48:46 +00:00
12 lines
No EOL
274 B
C#
12 lines
No EOL
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; }
|
|
}
|
|
} |