1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00
Sonarr/NzbDrone.Core/Repository/MetadataDefinition.cs

17 lines
368 B
C#
Raw Normal View History

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