ChapterInfo.cs 800 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. /// <summary>
  5. /// Class ChapterInfo
  6. /// </summary>
  7. public class ChapterInfo
  8. {
  9. /// <summary>
  10. /// Gets or sets the start position ticks.
  11. /// </summary>
  12. /// <value>The start position ticks.</value>
  13. public long StartPositionTicks { get; set; }
  14. /// <summary>
  15. /// Gets or sets the name.
  16. /// </summary>
  17. /// <value>The name.</value>
  18. public string Name { get; set; }
  19. /// <summary>
  20. /// Gets or sets the image path.
  21. /// </summary>
  22. /// <value>The image path.</value>
  23. public string ImagePath { get; set; }
  24. public DateTime ImageDateModified { get; set; }
  25. public string ImageTag { get; set; }
  26. }
  27. }