16 lines
386 B
C#
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; }
|
|
}
|
|
} |