using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class SklepProfil { public SklepProfil() { SklepProfilKonfigs = new HashSet(); SklepUzytkowniks = new HashSet(); } public decimal SklepId { get; set; } public decimal SklepProfilId { get; set; } 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 Profil Profil { get; set; } public virtual Sklep Sklep { get; set; } public virtual ICollection SklepProfilKonfigs { get; set; } public virtual ICollection SklepUzytkowniks { get; set; } }