ChapterOptions.cs 888 B

123456789101112131415161718192021222324252627
  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 ChapterOptions()
  13. {
  14. EnableMovieChapterImageExtraction = true;
  15. EnableEpisodeChapterImageExtraction = false;
  16. EnableOtherVideoChapterImageExtraction = false;
  17. DownloadMovieChapters = true;
  18. DisabledFetchers = new string[] { };
  19. FetcherOrder = new string[] { };
  20. }
  21. }
  22. }