You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
759 B
29 lines
759 B
using MediaBrowser.Controller.Session;
|
|
|
|
namespace MediaBrowser.Controller.SyncPlay
|
|
{
|
|
/// <summary>
|
|
/// Class GroupMember.
|
|
/// </summary>
|
|
public class GroupMember
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets whether this member is buffering.
|
|
/// </summary>
|
|
/// <value><c>true</c> if member is buffering; <c>false</c> otherwise.</value>
|
|
public bool IsBuffering { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the session.
|
|
/// </summary>
|
|
/// <value>The session.</value>
|
|
public SessionInfo Session { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the ping.
|
|
/// </summary>
|
|
/// <value>The ping.</value>
|
|
public long Ping { get; set; }
|
|
}
|
|
}
|