namespace MediaBrowser.Model.Session
{
/// <summary>
/// Enum PlayCommand
/// </summary>
public enum PlayCommand
/// The play now
PlayNow = 0,
/// The play next
PlayNext = 1,
/// The play last
PlayLast = 2,
/// The play instant mix
PlayInstantMix = 3,
/// The play shuffle
PlayShuffle = 4
}