19 lines
780 B
C#
19 lines
780 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Auditoria
|
||
|
|
{
|
||
|
|
public class PerfilHistorialDto
|
||
|
|
{
|
||
|
|
public int IdPerfil { get; set; } // ID del Perfil original
|
||
|
|
public string Perfil { get; set; } = string.Empty; // Nombre del perfil
|
||
|
|
public string? DescPerfil { get; set; }
|
||
|
|
|
||
|
|
public int Id_Usuario { get; set; } // Quién hizo el cambio
|
||
|
|
public string NombreUsuarioModifico { get; set; } = string.Empty;
|
||
|
|
public DateTime FechaMod { get; set; }
|
||
|
|
public string TipoMod { get; set; } = string.Empty;
|
||
|
|
// El IdHist (PK de _H) no es estrictamente necesario en el DTO para mostrar,
|
||
|
|
// pero se puede incluir un identificador único para cada entrada de historial.
|
||
|
|
// public int IdHistorial { get; set;}
|
||
|
|
}
|
||
|
|
}
|