16 lines
403 B
C#
16 lines
403 B
C#
namespace Webzine.Business.DTOs.Spotify
|
|
{
|
|
using System.Text.Json.Serialization;
|
|
|
|
/// <summary>
|
|
/// Container d'artistes spotify.
|
|
/// </summary>
|
|
public class SpotifyArtistsContainerDto
|
|
{
|
|
/// <summary>
|
|
/// Liste d'artiste spotify.
|
|
/// </summary>
|
|
[JsonPropertyName("items")]
|
|
public List<SpotifyArtistDto> Items { get; set; } = new ();
|
|
}
|
|
} |