You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
773 B
29 lines
773 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SubSonic.SqlGeneration.Schema;
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
{
|
|
public class Indexer
|
|
{
|
|
[SubSonicPrimaryKey]
|
|
public virtual int IndexerId { get; set; }
|
|
|
|
public string IndexerName { get; set; }
|
|
public string RssUrl { get; set; }
|
|
|
|
[SubSonicNullStringAttribute]
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
|
public string ApiUrl { get; set; }
|
|
public bool Enabled { get; set; }
|
|
public int Order { get; set; }
|
|
|
|
[SubSonicToManyRelation]
|
|
public virtual List<History> Histories { get; private set; }
|
|
}
|
|
}
|