#145 : Ajout du seeder Spotify.
This commit is contained in:
16
Webzine.Business/DTOs/Spotify/SpotifyTokenResponseDto.cs
Normal file
16
Webzine.Business/DTOs/Spotify/SpotifyTokenResponseDto.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user