mirror of
https://github.com/Radarr/Radarr
synced 2024-12-31 20:35:37 +00:00
4bb4faf626
Still need to remove System.Data.Sqlite, prefer an option in OrmLite to pluralize table names.
15 lines
No EOL
331 B
C#
15 lines
No EOL
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; }
|
|
}
|
|
} |