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