namespace Webzine.Business.DTOs.Spotify { using System.Text.Json.Serialization; /// /// Objet artiste retourne depuis spotify. /// public class SpotifyArtistDto { /// /// Id de l'artiste. /// [JsonPropertyName("id")] public string Id { get; set; } = string.Empty; /// /// Nom de l'artiste. /// [JsonPropertyName("name")] public string Name { get; set; } = string.Empty; /// /// Genre musical de l'artiste. /// [JsonPropertyName("genres")] public List Genres { get; set; } = new (); } }