mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-12 22:12:38 +01:00
4bb4faf626
Still need to remove System.Data.Sqlite, prefer an option in OrmLite to pluralize table names.
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; }
|
|
}
|
|
} |