aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/PlayRequest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Session/PlayRequest.cs')
-rw-r--r--MediaBrowser.Model/Session/PlayRequest.cs14
1 files changed, 11 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Session/PlayRequest.cs b/MediaBrowser.Model/Session/PlayRequest.cs
index 949274a5d..74d7a70a3 100644
--- a/MediaBrowser.Model/Session/PlayRequest.cs
+++ b/MediaBrowser.Model/Session/PlayRequest.cs
@@ -39,14 +39,22 @@ namespace MediaBrowser.Model.Session
/// <summary>
/// The play now
/// </summary>
- PlayNow,
+ PlayNow = 0,
/// <summary>
/// The play next
/// </summary>
- PlayNext,
+ PlayNext = 1,
/// <summary>
/// The play last
/// </summary>
- PlayLast
+ PlayLast = 2,
+ /// <summary>
+ /// The play instant mix
+ /// </summary>
+ PlayInstantMix = 3,
+ /// <summary>
+ /// The play shuffle
+ /// </summary>
+ PlayShuffle = 4
}
} \ No newline at end of file