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

11 lines
180 B
C#
Raw Normal View History

2020-05-08 10:10:53 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class ArtistsRelatedArtistsResponse
{
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