namespace MediaBrowser.Model.Session { /// /// Class PlayRequest /// public class PlayRequest { /// /// Gets or sets the item ids. /// /// The item ids. public string[] ItemIds { get; set; } /// /// Gets or sets the start position ticks that the first item should be played at /// /// The start position ticks. public long? StartPositionTicks { get; set; } /// /// Gets or sets the play command. /// /// The play command. public PlayCommand PlayCommand { get; set; } /// /// Gets or sets the controlling user identifier. /// /// The controlling user identifier. public string ControllingUserId { get; set; } } /// /// 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 } }