using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models.Apple { public class AppleSongAttributes { public string artistName { get; set; } public AppleArtwork artwork { get; set; } public string composerName { get; set; } public int discNumber { get; set; } public int durationInMillis { get; set; } public List genreNames { get; set; } public string name { get; set; } public ApplePlayParams playParams { get; set; } public string releaseDate { get; set; } public int trackNumber { get; set; } public string isrc { get; set; } public string url { get; set; } } }