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

10 lines
150 B
C#
Raw Normal View History

2020-05-07 21:33:29 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class AlbumsResponse
{
public List<FullAlbum> Albums { get; set; }
2020-05-07 21:33:29 +01:00
}
}