LibraryOptions.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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 bool EnableChapterImageExtraction { get; set; }
  9. public bool ExtractChapterImagesDuringLibraryScan { get; set; }
  10. public bool DownloadImagesInAdvance { get; set; }
  11. public MediaPathInfo[] PathInfos { get; set; }
  12. public bool SaveLocalMetadata { get; set; }
  13. public bool EnableInternetProviders { get; set; }
  14. public bool ImportMissingEpisodes { get; set; }
  15. public bool EnableAutomaticSeriesGrouping { get; set; }
  16. public LibraryOptions()
  17. {
  18. EnablePhotos = true;
  19. EnableRealtimeMonitor = true;
  20. PathInfos = new MediaPathInfo[] { };
  21. EnableInternetProviders = true;
  22. EnableAutomaticSeriesGrouping = true;
  23. }
  24. }
  25. public class MediaPathInfo
  26. {
  27. public string Path { get; set; }
  28. public string NetworkPath { get; set; }
  29. }
  30. }