ChapterOptions.cs 510 B

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