mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-20 17:14:42 +01:00
Add playlist-sync and group-wait to SyncPlay
This commit is contained in:
22
MediaBrowser.Model/SyncPlay/GroupStateUpdate.cs
Normal file
22
MediaBrowser.Model/SyncPlay/GroupStateUpdate.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
#nullable disable
|
||||
|
||||
namespace MediaBrowser.Model.SyncPlay
|
||||
{
|
||||
/// <summary>
|
||||
/// Class GroupStateUpdate.
|
||||
/// </summary>
|
||||
public class GroupStateUpdate
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the state of the group.
|
||||
/// </summary>
|
||||
/// <value>The state of the group.</value>
|
||||
public GroupState State { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the reason of the state change.
|
||||
/// </summary>
|
||||
/// <value>The reason of the state change.</value>
|
||||
public PlaybackRequestType Reason { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user