using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class Profil { public Profil() { ProfilKonfigs = new HashSet(); SklepProfils = new HashSet(); Uzytkowniks = new HashSet(); } 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 ProfilKonfigs { get; set; } public virtual ICollection SklepProfils { get; set; } public virtual ICollection Uzytkowniks { get; set; } }