mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
9dbd210a2f
* Fixed issues #926, and #928. Added JsonConverter attributes to properties. * Fixed complier warning CA1305
13 lines
221 B
C#
13 lines
221 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class Followers
|
|
{
|
|
public string Href { get; set; } = default!;
|
|
|
|
[JsonConverter(typeof(DoubleToIntConverter))]
|
|
public int Total { get; set; }
|
|
}
|
|
}
|