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, /// /// The rewind /// Rewind, /// /// The fast forward /// FastForward } public class PlaystateRequest { public PlaystateCommand Command { get; set; } public long? SeekPositionTicks { get; set; } /// /// Gets or sets the controlling user identifier. /// /// The controlling user identifier. public string ControllingUserId { get; set; } } }