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

20 lines
468 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.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>();
}