PlaybackProgressInfo.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using MediaBrowser.Controller.Entities;
  2. using System;
  3. namespace MediaBrowser.Controller.Session
  4. {
  5. public class PlaybackProgressInfo
  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 a value indicating whether this instance is paused.
  19. /// </summary>
  20. /// <value><c>true</c> if this instance is paused; otherwise, <c>false</c>.</value>
  21. public bool IsPaused { get; set; }
  22. /// <summary>
  23. /// Gets or sets a value indicating whether this instance is muted.
  24. /// </summary>
  25. /// <value><c>true</c> if this instance is muted; otherwise, <c>false</c>.</value>
  26. public bool IsMuted { get; set; }
  27. /// <summary>
  28. /// Gets or sets the position ticks.
  29. /// </summary>
  30. /// <value>The position ticks.</value>
  31. public long? PositionTicks { get; set; }
  32. }
  33. }