using System.Collections.Generic;

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