namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class CentrStanZgody { public decimal KontrId { get; set; } public decimal ZgId { get; set; } public short Status { get; set; } public string Kiedy { get; set; } = null!; public string? Wersja { get; set; } public short? FormaDec { get; set; } public DateTime? DataDec { get; set; } public virtual Kontrahent Kontr { get; set; } = null!; public virtual Zgoda Zg { get; set; } = null!; }