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

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