16 lines
425 B
C#
16 lines
425 B
C#
namespace Webzine.Business.DTOs.Spotify
|
|
{
|
|
using System.Text.Json.Serialization;
|
|
|
|
/// <summary>
|
|
/// Resultat d'une recherche spotify avec un objet artist.
|
|
/// </summary>
|
|
public class SpotifySearchArtistsResponseDto
|
|
{
|
|
/// <summary>
|
|
/// Liste d'artistes.
|
|
/// </summary>
|
|
[JsonPropertyName("artists")]
|
|
public SpotifyArtistsContainerDto? Artists { get; set; }
|
|
}
|
|
} |