Ya perdí el hilo de los cambios pero ahi van.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user