Files
webzine/Webzine.Business/DTOs/Spotify/SpotifyArtistsContainerDto.cs
2026-04-02 17:59:36 +02:00

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 ();
}
}