ChapterInfo.cs 852 B

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