9a281238e9
All checks were successful
Unit tests / test (push) Successful in 1m14s
Удалена папка Models из проекта DD.Persistence
11 lines
231 B
C#
11 lines
231 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace DD.Persistence.Models.Configurations
|
|
{
|
|
public class JwtToken
|
|
{
|
|
[JsonPropertyName("access_token")]
|
|
public required string AccessToken { get; set; }
|
|
}
|
|
}
|