using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class NrRej { public NrRej() { NrRejKarta = new HashSet(); } public decimal KontrId { get; set; } public string NrFormat { get; set; } public string NrWpisany { get; set; } public short WyborKart { get; set; } public virtual Kontrahent Kontr { get; set; } public virtual ICollection NrRejKarta { get; set; } }