diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-09-23 03:02:19 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-23 03:02:19 -0400 |
| commit | 888d17635a62a421093d1328631473b6f6a7bcc3 (patch) | |
| tree | d8f029fc7289f8b9400617ebb750824d4831f360 /MediaBrowser.Model/Configuration/LibraryOptions.cs | |
| parent | a237bd8ad08f2ba220cf838df670d9a16a6fc5b3 (diff) | |
| parent | 1a8167889375b92734908bc1500b001518590b40 (diff) | |
Merge pull request #2186 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Model/Configuration/LibraryOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/LibraryOptions.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/LibraryOptions.cs b/MediaBrowser.Model/Configuration/LibraryOptions.cs index 770ad433d..460ee0918 100644 --- a/MediaBrowser.Model/Configuration/LibraryOptions.cs +++ b/MediaBrowser.Model/Configuration/LibraryOptions.cs @@ -9,11 +9,19 @@ public bool EnableChapterImageExtraction { get; set; } public bool ExtractChapterImagesDuringLibraryScan { get; set; } public bool DownloadImagesInAdvance { get; set; } + public MediaPathInfo[] PathInfos { get; set; } public LibraryOptions() { EnablePhotos = true; EnableRealtimeMonitor = true; + PathInfos = new MediaPathInfo[] { }; } } + + public class MediaPathInfo + { + public string Path { get; set; } + public string NetworkPath { get; set; } + } } |
