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

11 lines
220 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class SeveralAlbums : BasicModel
{
[JsonProperty("albums")]
public List<FullAlbum> Albums { get; set; }
}
}