ChapterOptions.cs 364 B

1234567891011
  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 ExtractDuringLibraryScan { get; set; }
  9. }
  10. }