ChapterResponse.cs 459 B

12345678910111213141516171819
  1. using MediaBrowser.Model.Chapters;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Chapters
  4. {
  5. public class ChapterResponse
  6. {
  7. /// <summary>
  8. /// Gets or sets the chapters.
  9. /// </summary>
  10. /// <value>The chapters.</value>
  11. public List<RemoteChapterInfo> Chapters { get; set; }
  12. public ChapterResponse()
  13. {
  14. Chapters = new List<RemoteChapterInfo>();
  15. }
  16. }
  17. }