aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/LibraryOptions.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-02 00:31:47 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-02 00:31:47 -0400
commit911d9f4598e4cafe24a8eb6d40a0d95356d3437c (patch)
treef388b7f2873f1111f77620a04a9e4605effb481d /MediaBrowser.Model/Configuration/LibraryOptions.cs
parent1454e07c545997ca142e993cfe435987705309d7 (diff)
move more metadata settings to per library
Diffstat (limited to 'MediaBrowser.Model/Configuration/LibraryOptions.cs')
-rw-r--r--MediaBrowser.Model/Configuration/LibraryOptions.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/LibraryOptions.cs b/MediaBrowser.Model/Configuration/LibraryOptions.cs
index 460ee0918..5f8c77ccd 100644
--- a/MediaBrowser.Model/Configuration/LibraryOptions.cs
+++ b/MediaBrowser.Model/Configuration/LibraryOptions.cs
@@ -11,11 +11,15 @@
public bool DownloadImagesInAdvance { get; set; }
public MediaPathInfo[] PathInfos { get; set; }
+ public bool SaveLocalMetadata { get; set; }
+ public bool EnableInternetProviders { get; set; }
+
public LibraryOptions()
{
EnablePhotos = true;
EnableRealtimeMonitor = true;
PathInfos = new MediaPathInfo[] { };
+ EnableInternetProviders = true;
}
}