Files
AlquilaFacil/Entidades/Logs/LogDetalleDto.cs

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; }
}