using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models.Apple { public class AppleChartSongData { public AppleChartSongAttributes attributes { get; set; } public string href { get; set; } public long id { get; set; } public string type { get; set; } } public class AppleChartSongAttributes { public string artistName { get; set; } public AppleArtwork artwork { get; set; } public int discNumber { get; set; } public int durationInMillis { get; set; } public List genreNames { get; set; } public string name { get; set; } public AppleSongPlayParams playParams { get; set; } public string releaseDate { get; set; } public int trackNumber { get; set; } public string url { get; set; } public string isrc { get; set; } } public class AppleSongPlayParams { public string id { get; set; } public string kind { get; set; } } }