mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-01 06:16:30 +01:00
Add playlist-sync and group-wait to SyncPlay
This commit is contained in:
@@ -7,12 +7,6 @@ namespace MediaBrowser.Controller.SyncPlay
|
||||
/// </summary>
|
||||
public class GroupMember
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating 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>
|
||||
@@ -20,9 +14,21 @@ namespace MediaBrowser.Controller.SyncPlay
|
||||
public SessionInfo Session { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the ping.
|
||||
/// Gets or sets the ping, in milliseconds.
|
||||
/// </summary>
|
||||
/// <value>The ping.</value>
|
||||
public long Ping { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating 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 a value indicating whether this member is following group playback.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> to ignore member on group wait; <c>false</c> if they're following group playback.</value>
|
||||
public bool IgnoreGroupWait { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user