GroupMember.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. using MediaBrowser.Controller.Session;
  2. namespace MediaBrowser.Controller.SyncPlay
  3. {
  4. /// <summary>
  5. /// Class GroupMember.
  6. /// </summary>
  7. public class GroupMember
  8. {
  9. /// <summary>
  10. /// Gets or sets the session.
  11. /// </summary>
  12. /// <value>The session.</value>
  13. public SessionInfo Session { get; set; }
  14. /// <summary>
  15. /// Gets or sets the ping, in milliseconds.
  16. /// </summary>
  17. /// <value>The ping.</value>
  18. public long Ping { get; set; }
  19. /// <summary>
  20. /// Gets or sets a value indicating whether this member is buffering.
  21. /// </summary>
  22. /// <value><c>true</c> if member is buffering; <c>false</c> otherwise.</value>
  23. public bool IsBuffering { get; set; }
  24. /// <summary>
  25. /// Gets or sets a value indicating whether this member is following group playback.
  26. /// </summary>
  27. /// <value><c>true</c> to ignore member on group wait; <c>false</c> if they're following group playback.</value>
  28. public bool IgnoreGroupWait { get; set; }
  29. }
  30. }