Spotify.NET/SpotifyAPI/Web/Models/SeveralAlbums.cs

11 lines
237 B
C#
Raw Normal View History

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