// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace Jellyfin.Api.Models.SyncPlayDtos; using System; using System.Collections.Generic; using MediaBrowser.Model.SyncPlay; /// /// Class QueueRequestDto. /// public class QueueRequestDto { /// /// Initializes a new instance of the class. /// public QueueRequestDto() { ItemIds = Array.Empty(); } /// /// Gets or sets the items to enqueue. /// /// The items to enqueue. public IReadOnlyList ItemIds { get; set; } /// /// Gets or sets the mode in which to add the new items. /// /// The enqueue mode. public GroupQueueMode Mode { get; set; } }