24 lines
473 B
C#
24 lines
473 B
C#
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!;
|
|
}
|