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

10 lines
167 B
C#

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