Files
WatchIt/WatchIt.DTO/Models/Controllers/Authentication/AuthenticationResponse.cs

11 lines
246 B
C#

namespace WatchIt.DTO.Models.Controllers.Authentication;
public class AuthenticationResponse
{
#region PROPERTIES
public string AccessToken { get; init; } = null!;
public string RefreshToken { get; init; } = null!;
#endregion
}