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

9 lines
147 B
C#

namespace SpotifyAPI.Web
{
public class FollowedArtistsResponse
{
public CursorPaging<FullArtist> Artists { get; set; } = default!;
}
}