18 lines
414 B
C#
18 lines
414 B
C#
|
|
namespace SIGCM2.Application.Usuarios.GetById;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Full detail projection — excludes PasswordHash and PermisosJson (security).
|
||
|
|
/// </summary>
|
||
|
|
public sealed record UsuarioDetailDto(
|
||
|
|
int Id,
|
||
|
|
string Username,
|
||
|
|
string Nombre,
|
||
|
|
string Apellido,
|
||
|
|
string? Email,
|
||
|
|
string Rol,
|
||
|
|
bool Activo,
|
||
|
|
bool MustChangePassword,
|
||
|
|
DateTime? UltimoLogin,
|
||
|
|
DateTime? FechaModificacion
|
||
|
|
);
|