aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/SyncPlay/SendCommandType.cs
diff options
context:
space:
mode:
authorgion <oancaionutandrei@gmail.com>2020-05-06 23:42:53 +0200
committergion <oancaionutandrei@gmail.com>2020-05-09 12:37:39 +0200
commit8a6ec2fb713cb77e91d2fceea8b4fce8e7d17395 (patch)
treecb070ad90c98e2b3fdcbb6aef95aa622e386c877 /MediaBrowser.Model/SyncPlay/SendCommandType.cs
parent6e22e9222b68ad117550c02a8cbce2d65878f50b (diff)
Rename Syncplay to SyncPlay
Diffstat (limited to 'MediaBrowser.Model/SyncPlay/SendCommandType.cs')
-rw-r--r--MediaBrowser.Model/SyncPlay/SendCommandType.cs21
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 000000000..113719871
--- /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
+ }
+}