namespace MediaBrowser.Model.Session
{
    /// 
    /// Enum PlayCommand
    /// 
    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
    }
}