ChapterOptions.cs 782 B

12345678910111213141516171819202122232425
  1. namespace MediaBrowser.Model.Configuration
  2. {
  3. public class ChapterOptions
  4. {
  5. public bool EnableMovieChapterImageExtraction { get; set; }
  6. public bool EnableEpisodeChapterImageExtraction { get; set; }
  7. public bool EnableOtherVideoChapterImageExtraction { get; set; }
  8. public bool DownloadMovieChapters { get; set; }
  9. public bool DownloadEpisodeChapters { get; set; }
  10. public string[] FetcherOrder { get; set; }
  11. public string[] DisabledFetchers { get; set; }
  12. public bool ExtractDuringLibraryScan { get; set; }
  13. public ChapterOptions()
  14. {
  15. DownloadMovieChapters = true;
  16. DisabledFetchers = new string[] { };
  17. FetcherOrder = new string[] { };
  18. }
  19. }
  20. }