mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-21 12:02:46 +00:00
Check that client is playing the right item
Send date when playback command is emitted Rename some classes
This commit is contained in:
21
MediaBrowser.Model/Syncplay/SendCommandType.cs
Normal file
21
MediaBrowser.Model/Syncplay/SendCommandType.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace MediaBrowser.Model.Syncplay
|
||||
{
|
||||
/// <summary>
|
||||
/// Enum SendCommandType.
|
||||
/// </summary>
|
||||
public enum SendCommandType
|
||||
{
|
||||
/// <summary>
|
||||
/// The play command. Instructs users to start playback.
|
||||
/// </summary>
|
||||
Play = 0,
|
||||
/// <summary>
|
||||
/// The pause command. Instructs users to pause playback.
|
||||
/// </summary>
|
||||
Pause = 1,
|
||||
/// <summary>
|
||||
/// The seek command. Instructs users to seek to a specified time.
|
||||
/// </summary>
|
||||
Seek = 2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user