namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class SklepKartaLoj { 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; } = null!; public virtual SklepKontoLoj SklepKontoLoj { get; set; } = null!; public virtual ICollection SklepNrRejKarta { get; set; } = new List(); }