using System; using System.Collections.Generic; namespace Entidades; public partial class LogDetalle { 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; } public virtual Log Log { get; set; } = null!; }