using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class SklepNrRej { public SklepNrRej() { SklepNrRejKarta = new HashSet(); } public decimal SklepId { get; set; } public decimal SklepKontrId { get; set; } public string NrFormat { get; set; } public string NrWpisany { get; set; } public short WyborKart { get; set; } public virtual SklepKontr Sklep { get; set; } public virtual ICollection SklepNrRejKarta { get; set; } }