PlaybackStopInfo.cs 671 B

1234567891011121314151617181920212223242526
  1. using MediaBrowser.Controller.Entities;
  2. using System;
  3. namespace MediaBrowser.Controller.Session
  4. {
  5. public class PlaybackStopInfo
  6. {
  7. /// <summary>
  8. /// Gets or sets the item.
  9. /// </summary>
  10. /// <value>The item.</value>
  11. public BaseItem Item { get; set; }
  12. /// <summary>
  13. /// Gets or sets the session id.
  14. /// </summary>
  15. /// <value>The session id.</value>
  16. public Guid SessionId { get; set; }
  17. /// <summary>
  18. /// Gets or sets the position ticks.
  19. /// </summary>
  20. /// <value>The position ticks.</value>
  21. public long? PositionTicks { get; set; }
  22. }
  23. }