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