using System; using System.Collections.Generic; namespace Jellyfin.Api.Models.SyncPlayDtos; /// /// Class PlayRequestDto. /// public class PlayRequestDto { /// /// Initializes a new instance of the class. /// public PlayRequestDto() { 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; } }