33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
|
|
namespace GestionIntegral.Api.Models.Usuarios
|
||
|
|
{
|
||
|
|
public class UsuarioHistorico
|
||
|
|
{
|
||
|
|
public int IdHist { get; set; }
|
||
|
|
public int IdUsuario { get; set; } // FK al usuario modificado
|
||
|
|
|
||
|
|
public string? UserAnt { get; set; }
|
||
|
|
public string UserNvo { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
public bool? HabilitadaAnt { get; set; }
|
||
|
|
public bool HabilitadaNva { get; set; }
|
||
|
|
|
||
|
|
public bool? SupAdminAnt { get; set; }
|
||
|
|
public bool SupAdminNvo { get; set; }
|
||
|
|
|
||
|
|
public string? NombreAnt { get; set; }
|
||
|
|
public string NombreNvo { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
public string? ApellidoAnt { get; set; }
|
||
|
|
public string ApellidoNvo { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
public int? IdPerfilAnt { get; set; }
|
||
|
|
public int IdPerfilNvo { get; set; }
|
||
|
|
|
||
|
|
public bool? DebeCambiarClaveAnt { get; set; }
|
||
|
|
public bool DebeCambiarClaveNva { get; set; }
|
||
|
|
|
||
|
|
public int Id_UsuarioMod { get; set; } // Quién hizo el cambio
|
||
|
|
public DateTime FechaMod { get; set; }
|
||
|
|
public string TipoMod { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|