10 lines
321 B
C#
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;
|
|
}
|
|
}
|