DRAB/Pcm.Db/Entities/LogValChangeTxt.cs
2025-07-11 00:18:14 +02:00

17 lines
426 B
C#

using System;
#nullable disable
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; }
}