Spotify.NET/SpotifyAPI.Web/Models/Response/FullArtist.cs
2020-05-03 22:34:03 +02:00

19 lines
519 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class FullArtist
{
public Dictionary<string, string> ExternalUrls { get; set; }
public Followers Followers { get; set; }
public List<string> Genres { get; set; }
public string Href { get; set; }
public string Id { get; set; }
public List<Image> Images { get; set; }
public string Name { get; set; }
public int Popularity { get; set; }
public string Type { get; set; }
public string Uri { get; set; }
}
}