53 lines
2.0 KiB
C#
53 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class Uzytkownik
|
|
{
|
|
public Uzytkownik()
|
|
{
|
|
Doks = new HashSet<Dok>();
|
|
GrupaUzRolas = new HashSet<GrupaUz>();
|
|
Panels = new HashSet<Panel>();
|
|
PowiazanieUzs = new HashSet<PowiazanieUz>();
|
|
Sesjas = new HashSet<Sesja>();
|
|
SklepUzytkowniks = new HashSet<SklepUzytkownik>();
|
|
Uprawnienies = new HashSet<Uprawnienie>();
|
|
ZdarzOs = new HashSet<ZdarzO>();
|
|
}
|
|
|
|
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<Dok> Doks { get; set; }
|
|
public virtual ICollection<GrupaUz> GrupaUzRolas { get; set; }
|
|
public virtual ICollection<Panel> Panels { get; set; }
|
|
public virtual ICollection<PowiazanieUz> PowiazanieUzs { get; set; }
|
|
public virtual ICollection<Sesja> Sesjas { get; set; }
|
|
public virtual ICollection<SklepUzytkownik> SklepUzytkowniks { get; set; }
|
|
public virtual ICollection<Uprawnienie> Uprawnienies { get; set; }
|
|
public virtual ICollection<ZdarzO> ZdarzOs { get; set; }
|
|
} |