diff options
| author | gion <oancaionutandrei@gmail.com> | 2020-04-15 18:03:58 +0200 |
|---|---|---|
| committer | gion <oancaionutandrei@gmail.com> | 2020-04-27 22:39:20 +0200 |
| commit | 84d92ba9cea4fdd97a8d1580e67706dc4577871a (patch) | |
| tree | 1b4ab3037c2dc2c5ad0b92c4fe6017143774c625 /MediaBrowser.Model/Syncplay/SendCommandType.cs | |
| parent | 73c19bd2811abf7daa2db3801388db488cab3a59 (diff) | |
Check that client is playing the right item
Send date when playback command is emitted
Rename some classes
Diffstat (limited to 'MediaBrowser.Model/Syncplay/SendCommandType.cs')
| -rw-r--r-- | MediaBrowser.Model/Syncplay/SendCommandType.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Syncplay/SendCommandType.cs b/MediaBrowser.Model/Syncplay/SendCommandType.cs new file mode 100644 index 0000000000..02e4774d0d --- /dev/null +++ b/MediaBrowser.Model/Syncplay/SendCommandType.cs @@ -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 + } +} |
