namespace MediaBrowser.Model.Session { /// /// A request to change the playstate of a session. /// public class PlaystateRequest { /// /// Gets or sets the playstate command. /// public PlaystateCommand Command { get; set; } /// /// Gets or sets the seek position in ticks. /// public long? SeekPositionTicks { get; set; } /// /// Gets or sets the controlling user identifier. /// /// The controlling user identifier. public string? ControllingUserId { get; set; } } }