AuthentificationExample/ConsoleApp1/JwtToken.cs

8 lines
216 B
C#
Raw Permalink Normal View History

2024-10-24 11:49:21 +05:00
// See https://aka.ms/new-console-template for more information
using System.Text.Json.Serialization;
internal class JwtToken
{
[JsonPropertyName("access_token")]
public string AccessToken { get; set; }
}