namespace Webzine.Business.DTOs.Spotify
{
using System.Text.Json.Serialization;
///
/// Container d'artistes spotify.
///
public class SpotifyArtistsContainerDto
{
///
/// Liste d'artiste spotify.
///
[JsonPropertyName("items")]
public List Items { get; set; } = new ();
}
}