diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-10-02 02:20:16 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-02 02:20:16 -0400 |
| commit | 696cdf27377013cc9237f0ad0ac0614f2ff1cd59 (patch) | |
| tree | 39f835c844b44ce43ad5a967ce4854c5263d83ed /MediaBrowser.Model/Configuration/LibraryOptions.cs | |
| parent | 8d486444c9b72704f35153f07affd41c67df19a8 (diff) | |
| parent | cf4f5039bffa504b65569e2be5b2711e803e105b (diff) | |
Merge pull request #2207 from MediaBrowser/dev
Dev
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; } } |
