add shuffle and instant mix commands

This commit is contained in:
Luke Pulverenti
2014-03-29 14:20:42 -04:00
parent 0c32267717
commit 9f5101dee2
2 changed files with 49 additions and 10 deletions

View File

@@ -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
}
}