Metadata coming together for XBMC

This commit is contained in:
Mark McDowall
2012-07-09 21:37:24 -07:00
parent 8263ab1d0f
commit b50e16a456
10 changed files with 317 additions and 66 deletions

View File

@@ -0,0 +1,17 @@
using PetaPoco;
namespace NzbDrone.Core.Repository
{
[TableName("MetadataDefinitions")]
[PrimaryKey("Id", autoIncrement = true)]
public class MetadataDefinition
{
public int Id { get; set; }
public bool Enable { get; set; }
public string MetadataProviderType { get; set; }
public string Name { get; set; }
}
}