diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-02 00:31:47 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-02 00:31:47 -0400 |
| commit | 911d9f4598e4cafe24a8eb6d40a0d95356d3437c (patch) | |
| tree | f388b7f2873f1111f77620a04a9e4605effb481d /MediaBrowser.Model/Configuration/LibraryOptions.cs | |
| parent | 1454e07c545997ca142e993cfe435987705309d7 (diff) | |
move more metadata settings to per library
Diffstat (limited to 'MediaBrowser.Model/Configuration/LibraryOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/LibraryOptions.cs | 4 |
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; } } |
