using Manager.YouTube.Models.Innertube; namespace Manager.YouTube.Models.Playlist; public class PlaylistVideo { public required string VideoId { get; set; } public List Thumbnails { get; set; } = []; public required string Title { get; set; } public required string Author { get; set; } public long LengthSeconds { get; set; } public bool IsPlayable { get; set; } }