DRAB/Pcm.Db/Entities/LogValChangeTxt.cs
2025-07-11 10:50:46 +02:00

13 lines
392 B
C#

namespace Pcm.Db.Entities;
public class LogValChangeTxt
{
public decimal ValChangeId { get; set; }
public decimal OperationId { get; set; }
public decimal ValChangeTypeId { get; set; }
public string ValueBefore { get; set; }
public string ValueAfter { get; set; }
public DateTime? LastUpdate { get; set; }
public virtual LogOperation Operation { get; set; }
}