2020-05-03 21:34:03 +01:00
|
|
|
using System.Collections.Generic;
|
2024-02-10 10:03:22 +00:00
|
|
|
using Newtonsoft.Json;
|
2020-05-03 21:34:03 +01:00
|
|
|
|
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
|
|
|
public class FullArtist
|
|
|
|
{
|
2020-05-25 17:00:38 +01:00
|
|
|
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
|
|
|
|
public Followers Followers { get; set; } = default!;
|
|
|
|
public List<string> Genres { get; set; } = default!;
|
|
|
|
public string Href { get; set; } = default!;
|
|
|
|
public string Id { get; set; } = default!;
|
|
|
|
public List<Image> Images { get; set; } = default!;
|
|
|
|
public string Name { get; set; } = default!;
|
2024-02-10 10:03:22 +00:00
|
|
|
[JsonConverter(typeof(DoubleToIntConverter))]
|
2020-05-08 09:25:33 +01:00
|
|
|
public int Popularity { get; set; }
|
2020-05-25 17:00:38 +01:00
|
|
|
public string Type { get; set; } = default!;
|
|
|
|
public string Uri { get; set; } = default!;
|
2020-05-03 21:34:03 +01:00
|
|
|
}
|
|
|
|
}
|
2020-05-25 17:00:38 +01:00
|
|
|
|