using System; using System.Collections.Generic; namespace Jellyfin.Api.Models.SyncPlayDtos { /// /// Class RemoveFromPlaylistRequestDto. /// public class RemoveFromPlaylistRequestDto { /// /// Initializes a new instance of the class. /// public RemoveFromPlaylistRequestDto() { PlaylistItemIds = Array.Empty(); } /// /// Gets or sets the playlist identifiers ot the items. /// /// The playlist identifiers ot the items. public IReadOnlyList PlaylistItemIds { get; set; } } }