using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class Uzytkownik { public Uzytkownik() { Doks = new HashSet(); GrupaUzRolas = new HashSet(); Panels = new HashSet(); PowiazanieUzs = new HashSet(); Sesjas = new HashSet(); SklepUzytkowniks = new HashSet(); Uprawnienies = new HashSet(); ZdarzOs = new HashSet(); } public decimal UzId { 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 decimal? ProfilId { get; set; } public decimal? CentrUzId { get; set; } public short? Opiekun { get; set; } public DateTime? OstZmianaHasla { get; set; } public string Jezyk { get; set; } public string IdentPrepaid { get; set; } public string HasloPrepaid { get; set; } public decimal? CentrUzNsid { get; set; } public DateTime? Zmiana { get; set; } public DateTime? WymusZmianeHasla { get; set; } public short? RolaKasjera { get; set; } public virtual Profil Profil { get; set; } public virtual GrupaUz GrupaUzUz { get; set; } public virtual ICollection Doks { get; set; } public virtual ICollection GrupaUzRolas { get; set; } public virtual ICollection Panels { get; set; } public virtual ICollection PowiazanieUzs { get; set; } public virtual ICollection Sesjas { get; set; } public virtual ICollection SklepUzytkowniks { get; set; } public virtual ICollection Uprawnienies { get; set; } public virtual ICollection ZdarzOs { get; set; } }