Ya perdí el hilo de los cambios pero ahi van.

This commit is contained in:
2025-05-23 15:47:39 -03:00
parent e7e185a9cb
commit 3c1fe15b1f
141 changed files with 9764 additions and 190 deletions

View File

@@ -0,0 +1,27 @@
export interface UsuarioHistorialDto {
idHist: number;
idUsuarioAfectado: number;
userAfectado: string;
userAnt?: string | null;
userNvo: string;
habilitadaAnt?: boolean | null;
habilitadaNva: boolean;
supAdminAnt?: boolean | null;
supAdminNvo: boolean;
nombreAnt?: string | null;
nombreNvo: string;
apellidoAnt?: string | null;
apellidoNvo: string;
idPerfilAnt?: number | null;
idPerfilNvo: number;
nombrePerfilAnt?: string | null;
nombrePerfilNvo: string;
debeCambiarClaveAnt?: boolean | null;
debeCambiarClaveNva: boolean;
idUsuarioModifico: number;
nombreUsuarioModifico: string;
fechaModificacion: string; // vendrá como string ISO "2023-10-27T10:30:00"
tipoModificacion: string;
}