Spotify.NET/SpotifyAPI.Web/Models/Response/FollowedArtistsResponse.cs
2020-06-13 12:55:48 +02:00

9 lines
172 B
C#

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