2024-07-01 21:28:20 +02:00

17 lines
400 B
C#

namespace DuSoft.PcmDb.Entities;
public partial class NrRej
{
public decimal KontrId { get; set; }
public string NrFormat { get; set; } = null!;
public string NrWpisany { get; set; } = null!;
public short WyborKart { get; set; }
public virtual Kontrahent Kontr { get; set; } = null!;
public virtual ICollection<KartaLoj> Karta { get; set; } = new List<KartaLoj>();
}