Spotify.NET/SpotifyAPI.Web/Models/Response/Followers.cs
Lewis-Fam 9dbd210a2f
Fixed issues #926, and #928. (#942)
* Fixed issues #926, and #928.
Added JsonConverter attributes to properties.

* Fixed complier warning CA1305
2024-02-10 11:03:22 +01:00

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; }
}
}