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; } }