mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-17 23:56:44 +00:00
Add playlist-sync and group-wait to SyncPlay
This commit is contained in:
@@ -6,18 +6,23 @@ namespace MediaBrowser.Model.SyncPlay
|
||||
public enum SendCommandType
|
||||
{
|
||||
/// <summary>
|
||||
/// The play command. Instructs users to start playback.
|
||||
/// The unpause command. Instructs users to unpause playback.
|
||||
/// </summary>
|
||||
Play = 0,
|
||||
Unpause = 0,
|
||||
|
||||
/// <summary>
|
||||
/// The pause command. Instructs users to pause playback.
|
||||
/// </summary>
|
||||
Pause = 1,
|
||||
|
||||
/// <summary>
|
||||
/// The stop command. Instructs users to stop playback.
|
||||
/// </summary>
|
||||
Stop = 2,
|
||||
|
||||
/// <summary>
|
||||
/// The seek command. Instructs users to seek to a specified time.
|
||||
/// </summary>
|
||||
Seek = 2
|
||||
Seek = 3
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user