GroupMember.cs 778 B

12345678910111213141516171819202122232425262728
  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 a value indicating whether this member is buffering.
  11. /// </summary>
  12. /// <value><c>true</c> if member is buffering; <c>false</c> otherwise.</value>
  13. public bool IsBuffering { get; set; }
  14. /// <summary>
  15. /// Gets or sets the session.
  16. /// </summary>
  17. /// <value>The session.</value>
  18. public SessionInfo Session { get; set; }
  19. /// <summary>
  20. /// Gets or sets the ping.
  21. /// </summary>
  22. /// <value>The ping.</value>
  23. public long Ping { get; set; }
  24. }
  25. }