namespace MediaBrowser.Model.Session
{
    /// 
    /// Enum PlaystateCommand
    /// 
    public enum PlaystateCommand
    {
        /// 
        /// The stop
        /// 
        Stop,
        /// 
        /// The pause
        /// 
        Pause,
        /// 
        /// The unpause
        /// 
        Unpause,
        /// 
        /// The next track
        /// 
        NextTrack,
        /// 
        /// The previous track
        /// 
        PreviousTrack,
        /// 
        /// The seek
        /// 
        Seek
    }
    public class PlaystateRequest
    {
        public PlaystateCommand Command { get; set; }
        public long? SeekPositionTicks { get; set; }
    }
}