LibraryOptions.cs 860 B

123456789101112131415161718192021222324252627
  1. namespace MediaBrowser.Model.Configuration
  2. {
  3. public class LibraryOptions
  4. {
  5. public bool EnableArchiveMediaFiles { get; set; }
  6. public bool EnablePhotos { get; set; }
  7. public bool EnableRealtimeMonitor { get; set; }
  8. public int SchemaVersion { get; set; }
  9. public bool EnableChapterImageExtraction { get; set; }
  10. public bool ExtractChapterImagesDuringLibraryScan { get; set; }
  11. public bool DownloadImagesInAdvance { get; set; }
  12. public MediaPathInfo[] PathInfos { get; set; }
  13. public LibraryOptions()
  14. {
  15. EnablePhotos = true;
  16. EnableRealtimeMonitor = true;
  17. PathInfos = new MediaPathInfo[] { };
  18. }
  19. }
  20. public class MediaPathInfo
  21. {
  22. public string Path { get; set; }
  23. public string NetworkPath { get; set; }
  24. }
  25. }