api para obtener datos de los logs
This commit is contained in:
9
Entidades/Logs/LogDetalleDto.cs
Normal file
9
Entidades/Logs/LogDetalleDto.cs
Normal 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; }
|
||||
}
|
||||
7
Entidades/Logs/LogDto.cs
Normal file
7
Entidades/Logs/LogDto.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Entidades.Dto;
|
||||
public class LogDto {
|
||||
public DateTime Fecha { get; set; }
|
||||
public long Dniusuario { get; set; }
|
||||
public string Accion { get; set; } = null!;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user