2024-05-16 10:37:44 +02:00

26 lines
551 B
C#

using System;
using System.Collections.Generic;
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!;
}