using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models { public class SpotifyArtist { public SpotifyExternalUrls external_urls { get; set; } public SpotifyFollowers followers { get; set; } public string href { get; set; } public string id { get; set; } public string name { get; set; } public string type { get; set; } public string uri { get; set; } public List images { get; set; } public int? popularity { get; set; } } public class ArtistResponse { public List artists { get; set; } } }