namespace Pcm.Db.Entities; public class SklepKartaLoj { public SklepKartaLoj() { SklepNrRejKarta = new HashSet(); } public decimal SklepId { get; set; } public decimal SklepKartaId { get; set; } public decimal SklepKontoId { get; set; } public short TypKarty { get; set; } public string KodKarty { get; set; } public DateTime? WaznaOd { get; set; } public DateTime? WaznaDo { get; set; } public DateTime? Uniewazniono { get; set; } public string Posiadacz { get; set; } public string Opis1 { get; set; } public string Opis2 { get; set; } public virtual Sklep Sklep { get; set; } public virtual SklepKontoLoj SklepNavigation { get; set; } public virtual ICollection SklepNrRejKarta { get; set; } }