api para obtener datos de los logs

This commit is contained in:
2025-01-28 01:30:50 -03:00
parent 17fae0e777
commit c7880b03b3
4 changed files with 87 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace Entidades.Dto;
public class LogDetalleDto {
public DateTime Fecha { get; set; }
public long Dniusuario { get; set; }
public string NombreTabla { get; set; } = null!;
public string Columna { get; set; } = null!;
public string? ValorAnterior { get; set; }
public string? ValorNuevo { get; set; }
}