using System.Collections.Generic; namespace Sony.ChartBot.Entities.ChartApi { public class Track { public string Name { get; set; } public string ArtworkUrl { get; set; } public List Positions { get; set; } } }