LibraryOptions.cs 1015 B

12345678910111213141516171819202122232425262728293031
  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 bool SaveLocalMetadata { get; set; }
  14. public bool EnableInternetProviders { get; set; }
  15. public LibraryOptions()
  16. {
  17. EnablePhotos = true;
  18. EnableRealtimeMonitor = true;
  19. PathInfos = new MediaPathInfo[] { };
  20. EnableInternetProviders = true;
  21. }
  22. }
  23. public class MediaPathInfo
  24. {
  25. public string Path { get; set; }
  26. public string NetworkPath { get; set; }
  27. }
  28. }