mirror of https://github.com/lidarr/Lidarr
15 lines
331 B
C#
15 lines
331 B
C#
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
using ServiceStack.DataAnnotations;
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
[Alias("IndexerDefinitions")]
|
|
public class Indexer : ModelBase
|
|
{
|
|
public Boolean Enable { get; set; }
|
|
public String Type { get; set; }
|
|
public String Name { get; set; }
|
|
}
|
|
} |