9 lines
329 B
C#
9 lines
329 B
C#
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; }
|
|
} |