Files
WatchIt/WatchIt.Common/WatchIt.Common.Model/Accounts/AuthenticateResponse.cs

16 lines
350 B
C#
Raw Normal View History

2024-04-27 22:36:16 +02:00
using System.Text.Json.Serialization;
namespace WatchIt.Common.Model.Accounts;
public class AuthenticateResponse
{
#region PROPERTIES
[JsonPropertyName("access_token")]
public required string AccessToken { get; init; }
[JsonPropertyName("refresh_token")]
public required string RefreshToken { get; init; }
#endregion
}