using Manager.YouTube.Models.Playlist; namespace Manager.YouTube.Models; public class YouTubePlaylist { public required string Id { get; set; } public required string Title { get; set; } public required string Description { get; set; } public required string Owner { get; set; } public required string OwnerId { get; set; } public bool NoIndex { get; set; } public bool Unlisted { get; set; } public bool CanReorder { get; set; } public bool IsEditable { get; set; } public List Videos { get; set; } = []; public string? ContinuationToken { get; set; } }