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

11 lines
166 B
C#
Raw Normal View History

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