Esta todo a medio hacerse pero quiero versionar esto ya para no perder

nada
This commit is contained in:
2025-05-08 01:00:34 -03:00
parent 6f6d8a4e8c
commit 02add8907e
11 changed files with 348 additions and 58 deletions
+23
View File
@@ -0,0 +1,23 @@
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 int Id { get; set; }
public virtual Log Log { get; set; } = null!;
}