LibraryOptions.cs 1.0 KB

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