mirror of
https://github.com/Radarr/Radarr
synced 2024-12-29 03:15:19 +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; }
|
|
}
|
|
} |