namespace Pcm.Db.Entities; public class UzNaSklep { public UzNaSklep() { Panels = new HashSet(); PowiazanieUzNaSkleps = new HashSet(); UprawnienieNaSkleps = new HashSet(); } public decimal UzNsid { get; set; } public decimal? SklepId { get; set; } public decimal? SklepUzId { get; set; } public string Identyfikator { get; set; } public string Haslo { get; set; } public string Nazwisko { get; set; } 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 Sklep Sklep { get; set; } public virtual SklepUzytkownik SklepNavigation { get; set; } public virtual ICollection Panels { get; set; } public virtual ICollection PowiazanieUzNaSkleps { get; set; } public virtual ICollection UprawnienieNaSkleps { get; set; } }