mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 15:06:26 +00:00
9dbd210a2f
* Fixed issues #926, and #928. Added JsonConverter attributes to properties. * Fixed complier warning CA1305
22 lines
701 B
C#
22 lines
701 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class FullArtist
|
|
{
|
|
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; }
|
|
public string Type { get; set; } = default!;
|
|
public string Uri { get; set; } = default!;
|
|
}
|
|
}
|
|
|