ChapterImageRefreshOptions.cs 416 B

1234567891011121314151617
  1. using MediaBrowser.Controller.Entities;
  2. using MediaBrowser.Model.Entities;
  3. using System.Collections.Generic;
  4. namespace MediaBrowser.Controller.MediaEncoding
  5. {
  6. public class ChapterImageRefreshOptions
  7. {
  8. public Video Video { get; set; }
  9. public List<ChapterInfo> Chapters { get; set; }
  10. public bool SaveChapters { get; set; }
  11. public bool ExtractImages { get; set; }
  12. }
  13. }