using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models.Apple { public class AppleChartGenresResponse { public List data { get; set; } } public class AppleGenreAttributes { public string name { get; set; } } public class AppleGenreData { public AppleGenreAttributes attributes { get; set; } public string href { get; set; } public long id { get; set; } public string type { get; set; } } }