1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 09:21:43 +02:00
Radarr/NzbDrone.Core/Repository/MetadataDefinition.cs

17 lines
368 B
C#
Raw Normal View History

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