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

16 lines
470 B
C#

namespace Pcm.Db.Entities;
public class StanZgody
{
public decimal KontrId { get; set; }
public decimal ZgId { get; set; }
public short Status { get; set; }
public string Kiedy { get; set; }
public string Wersja { get; set; }
public DateTime Zmiana { get; set; }
public short? FormaDec { get; set; }
public DateTime? DataDec { get; set; }
public virtual Kontrahent Kontr { get; set; }
public virtual Zgodum Zg { get; set; }
}