Radarr/NzbDrone.Core/Repository/MetadataDefinition.cs

17 lines
368 B
C#
Raw Normal View History

2012-07-07 23:52:04 +00:00
using PetaPoco;
namespace NzbDrone.Core.Repository
{
2012-07-10 04:37:24 +00:00
[TableName("MetadataDefinitions")]
2012-07-07 23:52:04 +00:00
[PrimaryKey("Id", autoIncrement = true)]
2012-07-10 04:37:24 +00:00
public class MetadataDefinition
2012-07-07 23:52:04 +00:00
{
public int Id { get; set; }
public bool Enable { get; set; }
public string MetadataProviderType { get; set; }
public string Name { get; set; }
}
}