mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Metadata coming together for XBMC
This commit is contained in:
parent
8263ab1d0f
commit
b50e16a456
10 changed files with 317 additions and 66 deletions
17
NzbDrone.Core/Repository/MetadataDefinition.cs
Normal file
17
NzbDrone.Core/Repository/MetadataDefinition.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue