2025-09-06 19:51:07 +02:00

10 lines
321 B
C#

namespace Liber_Incantamentum.Application.Authentification.DTOs.Response
{
public class AuthResponseDto
{
public UserResponseDto UserResponse { get; set; } = null!;
public string AccessToken { get; set; } = string.Empty;
public string Refreshtoken { get; set; } = string.Empty;
}
}