using System.Collections.Generic; using Newtonsoft.Json; namespace SpotifyAPI.Web { public class FullArtist { public Dictionary ExternalUrls { get; set; } = default!; public Followers Followers { get; set; } = default!; public List Genres { get; set; } = default!; public string Href { get; set; } = default!; public string Id { get; set; } = default!; public List Images { get; set; } = default!; public string Name { get; set; } = default!; [JsonConverter(typeof(DoubleToIntConverter))] public int Popularity { get; set; } public string Type { get; set; } = default!; public string Uri { get; set; } = default!; } }