1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-04 10:28:08 +00:00
Lidarr/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; }
}
}