2011-04-19 00:12:06 +00:00
|
|
|
|
using System;
|
2011-06-18 00:10:33 +00:00
|
|
|
|
using PetaPoco;
|
2011-04-19 00:12:06 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
|
|
|
{
|
2011-07-08 03:27:11 +00:00
|
|
|
|
[TableName("IndexerDefinitions")]
|
2011-06-18 00:10:33 +00:00
|
|
|
|
[PrimaryKey("Id", autoIncrement = true)]
|
2011-07-08 03:27:11 +00:00
|
|
|
|
public class IndexerDefinition
|
2011-04-19 00:12:06 +00:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public Boolean Enable { get; set; }
|
|
|
|
|
|
|
|
|
|
public String IndexProviderType { get; set; }
|
|
|
|
|
|
|
|
|
|
public String Name { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|