Spotify.NET/SpotifyAPI.Web/Models/Response/ArtistsRelatedArtistsResponse.cs
2020-05-25 18:00:47 +02:00

11 lines
180 B
C#

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