namespace Webzine.Business.DTOs.Spotify
{
using System.Text.Json.Serialization;
///
/// Objet Spotify qui contient une liste d'album.
///
public class SpotifyAlbumsResponseDto
{
///
/// Container de plusieurs albums spotify.
///
[JsonPropertyName("items")]
public List Items { get; set; } = new ();
}
}