using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models.Apple { public class AppleSongData { public AppleSongAttributes attributes { get; set; } public string href { get; set; } public long id { get; set; } public AppleSongRelationships relationships { get; set; } public string type { get; set; } } public class MultipleSongsResponse { public List data { get; set; } } }