2020-05-04 22:02:53 +01:00
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
|
|
|
public class FollowedArtistsResponse
|
|
|
|
{
|
2020-06-13 11:55:48 +01:00
|
|
|
public CursorPaging<FullArtist, FollowedArtistsResponse> Artists { get; set; } = default!;
|
2020-05-04 22:02:53 +01:00
|
|
|
}
|
|
|
|
}
|
2020-05-25 17:00:38 +01:00
|
|
|
|