Spotify.NET/SpotifyAPI.Web/Models/Response/AlbumsResponse.cs

10 lines
150 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class AlbumsResponse
{
public List<FullAlbum> Albums { get; set; }
}
}