jellyfin/MediaBrowser.Controller/SyncPlay/GroupMember.cs

29 lines
778 B
C#
Raw Normal View History

2020-04-01 17:52:42 +02:00
using MediaBrowser.Controller.Session;
2020-05-06 23:42:53 +02:00
namespace MediaBrowser.Controller.SyncPlay
2020-04-01 17:52:42 +02:00
{
/// <summary>
/// Class GroupMember.
/// </summary>
public class GroupMember
{
/// <summary>
/// Gets or sets a value indicating whether this member is buffering.
2020-04-01 17:52:42 +02:00
/// </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; }
}
}