1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Repository/MetadataDefinition.cs

17 lines
368 B
C#
Raw Normal View History

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