8 lines
216 B
C#
8 lines
216 B
C#
// 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; }
|
|
} |