Spotify.NET/SpotifyAPI.Web/Models/Response/FullArtist.cs

22 lines
701 B
C#
Raw Normal View History

using System.Collections.Generic;
using Newtonsoft.Json;
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!;
[JsonConverter(typeof(DoubleToIntConverter))]
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-25 17:00:38 +01:00