Spotify.NET/SpotifyAPI.Web/Models/SeveralArtists.cs
2020-03-09 20:47:39 +01:00

11 lines
224 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class SeveralArtists : BasicModel
{
[JsonProperty("artists")]
public List<FullArtist> Artists { get; set; }
}
}