namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class UzNaSklep { public decimal UzNSId { get; set; } public decimal? SklepId { get; set; } public decimal? SklepUzId { get; set; } public string Identyfikator { get; set; } = null!; public string Haslo { get; set; } = null!; public string Nazwisko { get; set; } = null!; public short Aktywny { get; set; } public short NrKasjera { get; set; } public short? Rola { get; set; } public string? KodKasjera { get; set; } public short? NrSzuflady { get; set; } public string? Jezyk { get; set; } public string? IdentPrePaid { get; set; } public string? HasloPrepaid { get; set; } public DateTime? Zmiana { get; set; } public DateTime? WymusZmianeHasla { get; set; } public short? RolaKasjera { get; set; } public virtual ICollection Panel { get; set; } = new List(); public virtual ICollection PowiazanieUzNaSklep { get; set; } = new List(); public virtual Sklep? Sklep { get; set; } public virtual SklepUzytkownik? SklepUzytkownik { get; set; } public virtual ICollection UprawnienieNaSklep { get; set; } = new List(); }