ChapterInfo.cs 798 B

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