using System.Collections.Generic; namespace Sony.ChartBot.Entities.ChartApi { public class ChartResponse { public Artist Artist { get; set; } public Country Country { get; set; } public List Tracks { get; set; } public List Charts { get; set; } } }