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

19 lines
468 B
C#

using System;
#nullable disable
namespace Pcm.Db.Entities;
public class CentrStanZgody
{
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 short? FormaDec { get; set; }
public DateTime? DataDec { get; set; }
public virtual Kontrahent Kontr { get; set; }
public virtual Zgodum Zg { get; set; }
}