using System; using System.Collections.Generic; namespace MediaBrowser.Model.SyncPlay.RequestBodies { /// /// Class PlayRequestBody. /// public class PlayRequestBody { /// /// Initializes a new instance of the class. /// public PlayRequestBody() { PlayingQueue = Array.Empty(); } /// /// Gets or sets the playing queue. /// /// The playing queue. public IReadOnlyList PlayingQueue { get; set; } /// /// Gets or sets the position of the playing item in the queue. /// /// The playing item position. public int PlayingItemPosition { get; set; } /// /// Gets or sets the start position ticks. /// /// The start position ticks. public long StartPositionTicks { get; set; } } }