Spotify.NET/SpotifyAPI.Web/Models/SeveralArtists.cs
2018-08-24 14:10:13 +02:00

11 lines
238 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; }
}
}