ChapterOptions.cs 716 B

1234567891011121314151617181920212223
  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. DownloadMovieChapters = true;
  15. DisabledFetchers = new string[] { };
  16. FetcherOrder = new string[] { };
  17. }
  18. }
  19. }