RemoteChapterInfo.cs 454 B

123456789101112131415161718
  1. 
  2. namespace MediaBrowser.Model.Chapters
  3. {
  4. public class RemoteChapterInfo
  5. {
  6. /// <summary>
  7. /// Gets or sets the start position ticks.
  8. /// </summary>
  9. /// <value>The start position ticks.</value>
  10. public long StartPositionTicks { get; set; }
  11. /// <summary>
  12. /// Gets or sets the name.
  13. /// </summary>
  14. /// <value>The name.</value>
  15. public string Name { get; set; }
  16. }
  17. }