2024-07-01 21:28:20 +02:00

19 lines
439 B
C#

namespace DuSoft.PcmDb.Entities;
public partial class LogValChangeTxt
{
public decimal ValChangeId { get; set; }
public decimal OperationId { get; set; }
public decimal ValChangeTypeId { get; set; }
public string ValueBefore { get; set; } = null!;
public string ValueAfter { get; set; } = null!;
public DateTime? LastUpdate { get; set; }
public virtual LogOperation Operation { get; set; } = null!;
}