namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class Uzytkownik { public decimal UzId { 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 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 ICollection Dok { get; set; } = new List(); public virtual ICollection Email { get; set; } = new List(); public virtual ICollection GrupaUzRola { get; set; } = new List(); public virtual GrupaUz? GrupaUzUz { get; set; } public virtual ICollection Panel { get; set; } = new List(); public virtual ICollection PowiazanieUz { get; set; } = new List(); public virtual Profil? Profil { get; set; } public virtual ICollection Sesja { get; set; } = new List(); public virtual ICollection SklepUzytkownik { get; set; } = new List(); public virtual ICollection TrescEmail { get; set; } = new List(); public virtual ICollection Uprawnienie { get; set; } = new List(); public virtual ICollection ZdarzOs { get; set; } = new List(); }