DRAB/Pcm.Db/Entities/Profil.cs
2025-07-11 10:50:46 +02:00

23 lines
751 B
C#

namespace Pcm.Db.Entities;
public class Profil
{
public Profil()
{
ProfilKonfigs = new HashSet<ProfilKonfig>();
SklepProfils = new HashSet<SklepProfil>();
Uzytkowniks = new HashSet<Uzytkownik>();
}
public decimal ProfilId { get; set; }
public short Typ { get; set; }
public string Nazwa { get; set; }
public short? Aktywny { get; set; }
public DateTime? Zmiana { get; set; }
public DateTime? Utworzony { get; set; }
public virtual ProfilKasa ProfilKasa { get; set; }
public virtual ICollection<ProfilKonfig> ProfilKonfigs { get; set; }
public virtual ICollection<SklepProfil> SklepProfils { get; set; }
public virtual ICollection<Uzytkownik> Uzytkowniks { get; set; }
}