Radarr/NzbDrone.Core/Repository/IndexerDefinition.cs

18 lines
380 B
C#
Raw Normal View History

using System;
2011-06-18 00:10:33 +00:00
using PetaPoco;
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
{
public int Id { get; set; }
public Boolean Enable { get; set; }
public String IndexProviderType { get; set; }
public String Name { get; set; }
}
}