Spotify.NET/SpotifyAPI.Web/Models/Response/ArtistsResponse.cs
2020-05-08 11:26:34 +02:00

10 lines
153 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class ArtistsResponse
{
public List<FullArtist> Artists { get; set; }
}
}