Spotify.NET/SpotifyAPI.Web/Models/Response/Followers.cs
2020-05-25 18:00:47 +02:00

11 lines
148 B
C#

namespace SpotifyAPI.Web
{
public class Followers
{
public string Href { get; set; } = default!;
public int Total { get; set; }
}
}