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

16 lines
386 B
C#

namespace Webzine.Business.DTOs.Spotify
{
using System.Text.Json.Serialization;
/// <summary>
/// Recuperation Token Bearer de spotify.
/// </summary>
public class SpotifyTokenResponseDto
{
/// <summary>
/// Jeton d'acces.
/// </summary>
[JsonPropertyName("access_token")]
public string? AccessToken { get; set; }
}
}