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