// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Model.Dto; using global::System; using global::System.Collections.Generic; using MediaBrowser.Model.Entities; /// /// DTO for playlists. /// public class PlaylistDto { /// /// Gets or sets a value indicating whether the playlist is publicly readable. /// public bool OpenAccess { get; set; } /// /// Gets or sets the share permissions. /// public required IReadOnlyList Shares { get; set; } /// /// Gets or sets the item ids. /// public required IReadOnlyList ItemIds { get; set; } }