mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -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
|
@ -501,6 +501,27 @@ namespace NzbDrone.Core.Providers.Core
|
|||
set { SetValue("PlexPassword", value); }
|
||||
}
|
||||
|
||||
public virtual Boolean MetadataEnabled
|
||||
{
|
||||
get { return GetValueBoolean("MetadataEnabled"); }
|
||||
|
||||
set { SetValue("MetadataEnabled", value); }
|
||||
}
|
||||
|
||||
public virtual Boolean MetadataXbmcEnabled
|
||||
{
|
||||
get { return GetValueBoolean("MetadataXbmcEnabled"); }
|
||||
|
||||
set { SetValue("MetadataXbmcEnabled", value); }
|
||||
}
|
||||
|
||||
public virtual Boolean MetadataUseBanners
|
||||
{
|
||||
get { return GetValueBoolean("MetadataUseBanners"); }
|
||||
|
||||
set { SetValue("MetadataUseBanners", value); }
|
||||
}
|
||||
|
||||
private string GetValue(string key)
|
||||
{
|
||||
return GetValue(key, String.Empty);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue