40 lines
1.4 KiB
C#
40 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class UzNaSklep
|
|
{
|
|
public UzNaSklep()
|
|
{
|
|
Panels = new HashSet<Panel>();
|
|
PowiazanieUzNaSkleps = new HashSet<PowiazanieUzNaSklep>();
|
|
UprawnienieNaSkleps = new HashSet<UprawnienieNaSklep>();
|
|
}
|
|
|
|
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<Panel> Panels { get; set; }
|
|
public virtual ICollection<PowiazanieUzNaSklep> PowiazanieUzNaSkleps { get; set; }
|
|
public virtual ICollection<UprawnienieNaSklep> UprawnienieNaSkleps { get; set; }
|
|
} |