feat(udt-001): application layer with LoginCommandHandler and ports

This commit is contained in:
2026-04-13 21:36:01 -03:00
parent 2111070c77
commit 8c26cd3ac5
12 changed files with 168 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace SIGCM2.Application.Auth.Login;
public sealed record LoginResponseDto(
string AccessToken,
string RefreshToken,
int ExpiresIn,
UsuarioDto Usuario
);
public sealed record UsuarioDto(
int Id,
string Nombre,
string Rol,
string[] Permisos
);