using System; using System.Collections.Generic; using System.Text; namespace Sony.Filtr.ApolloAPI.Models { public class SpotifyUserResponse { public string display_name { get; set; } public SpotifyExternalUrls external_urls { get; set; } public SpotifyFollowers followers { get; set; } public string href { get; set; } public string id { get; set; } public List images { get; set; } public string type { get; set; } } }