persistence/Persistence/Models/Configurations/JwtToken.cs

11 lines
207 B
C#
Raw Permalink Normal View History

using System.Text.Json.Serialization;
namespace Persistence.Models.Configurations
{
public class JwtToken
{
[JsonPropertyName("access_token")]
public required string AccessToken { get; set; }
}
}