diff options
Diffstat (limited to 'MediaBrowser.Model/SyncPlay/SendCommandType.cs')
| -rw-r--r-- | MediaBrowser.Model/SyncPlay/SendCommandType.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/MediaBrowser.Model/SyncPlay/SendCommandType.cs b/MediaBrowser.Model/SyncPlay/SendCommandType.cs new file mode 100644 index 000000000..e6b17c60a --- /dev/null +++ b/MediaBrowser.Model/SyncPlay/SendCommandType.cs @@ -0,0 +1,28 @@ +namespace MediaBrowser.Model.SyncPlay +{ + /// <summary> + /// Enum SendCommandType. + /// </summary> + public enum SendCommandType + { + /// <summary> + /// The unpause command. Instructs users to unpause playback. + /// </summary> + 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 = 3 + } +} |
