Radarr/NzbDrone.Core/Repository/IndexerDefinition.cs

18 lines
380 B
C#

using System;
using PetaPoco;
namespace NzbDrone.Core.Repository
{
[TableName("IndexerDefinitions")]
[PrimaryKey("Id", autoIncrement = true)]
public class IndexerDefinition
{
public int Id { get; set; }
public Boolean Enable { get; set; }
public String IndexProviderType { get; set; }
public String Name { get; set; }
}
}