2013-02-21 07:07:34 +00:00
|
|
|
|
using System;
|
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-03-25 04:36:24 +00:00
|
|
|
|
using ServiceStack.DataAnnotations;
|
2013-03-02 18:25:39 +00:00
|
|
|
|
|
2013-02-21 07:07:34 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
|
|
|
{
|
2013-03-25 04:36:24 +00:00
|
|
|
|
[Alias("IndexerDefinitions")]
|
2013-02-21 07:07:34 +00:00
|
|
|
|
public class Indexer : ModelBase
|
|
|
|
|
{
|
|
|
|
|
public Boolean Enable { get; set; }
|
|
|
|
|
public String Type { get; set; }
|
|
|
|
|
public String Name { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|