Spotify.NET/SpotifyAPI.Web/Models/Response/ArtistsResponse.cs

10 lines
153 B
C#
Raw Normal View History

2020-05-08 10:10:53 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class ArtistsResponse
{
public List<FullArtist> Artists { get; set; }
}
}