diff options
| author | Tim Hobbs <jesus.tesh@gmail.com> | 2014-03-30 01:29:17 -0700 |
|---|---|---|
| committer | Tim Hobbs <jesus.tesh@gmail.com> | 2014-03-30 01:29:17 -0700 |
| commit | 28681ebce04769d65ca7be236b018fe3cee74367 (patch) | |
| tree | 81d651c2a9dc5e42bd71c0aed808438a627ae607 /MediaBrowser.Model/Session | |
| parent | 40d07e89ad1ace9647aeab82978e43077e0ce572 (diff) | |
| parent | a90d892ecab78a8f11fa7a4efda65ee70eceafe1 (diff) | |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'MediaBrowser.Model/Session')
| -rw-r--r-- | MediaBrowser.Model/Session/PlayRequest.cs | 14 |
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 |
