aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/SyncPlay/PlaybackRequestType.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-06-13 15:23:42 -0600
committercrobibero <cody@robibe.ro>2020-06-13 15:23:42 -0600
commitce37c4074937e15e6cdd23f0f6e5016502ac2cee (patch)
tree7263216cabb1e789fa9a2faa69c17187e7424e61 /MediaBrowser.Model/SyncPlay/PlaybackRequestType.cs
parent16e26be87f3c17422b7467882c5170fe11031825 (diff)
parent0011e8df47380936742302ef40639a4626a780ed (diff)
Merge remote-tracking branch 'upstream/api-migration' into api-item-lookup
Diffstat (limited to 'MediaBrowser.Model/SyncPlay/PlaybackRequestType.cs')
-rw-r--r--MediaBrowser.Model/SyncPlay/PlaybackRequestType.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/MediaBrowser.Model/SyncPlay/PlaybackRequestType.cs b/MediaBrowser.Model/SyncPlay/PlaybackRequestType.cs
new file mode 100644
index 0000000000..f1e175fdec
--- /dev/null
+++ b/MediaBrowser.Model/SyncPlay/PlaybackRequestType.cs
@@ -0,0 +1,33 @@
+namespace MediaBrowser.Model.SyncPlay
+{
+ /// <summary>
+ /// Enum PlaybackRequestType
+ /// </summary>
+ public enum PlaybackRequestType
+ {
+ /// <summary>
+ /// A user is requesting a play command for the group.
+ /// </summary>
+ Play = 0,
+ /// <summary>
+ /// A user is requesting a pause command for the group.
+ /// </summary>
+ Pause = 1,
+ /// <summary>
+ /// A user is requesting a seek command for the group.
+ /// </summary>
+ Seek = 2,
+ /// <summary>
+ /// A user is signaling that playback is buffering.
+ /// </summary>
+ Buffering = 3,
+ /// <summary>
+ /// A user is signaling that playback resumed.
+ /// </summary>
+ BufferingDone = 4,
+ /// <summary>
+ /// A user is reporting its ping.
+ /// </summary>
+ UpdatePing = 5
+ }
+}