using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models.Apple { public class AppleArtistData { public long id { get; set; } public string type { get; set; } public string href { get; set; } public AppleArtistAttributes attributes { get; set; } public AppleRelationships relationships { get; set; } } public class MultipleArtistsResponse { public List data { get; set; } } }