mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Initial commit for Metadata
This commit is contained in:
parent
a087c89903
commit
cc5b2c3e40
3 changed files with 190 additions and 0 deletions
17
NzbDrone.Core/Repository/MetabaseDefinition.cs
Normal file
17
NzbDrone.Core/Repository/MetabaseDefinition.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using PetaPoco;
|
||||
|
||||
namespace NzbDrone.Core.Repository
|
||||
{
|
||||
[TableName("MetabaseDefinitions")]
|
||||
[PrimaryKey("Id", autoIncrement = true)]
|
||||
public class MetabaseDefinition
|
||||
{
|
||||
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