namespace Pcm.Db.Entities; public class SklepZgodum { public SklepZgodum() { SklepFormZgods = new HashSet(); SklepTekstZgodies = new HashSet(); SklepZdarzOs = new HashSet(); } public decimal SklepId { get; set; } public decimal SklepZgId { get; set; } public decimal? ZgId { get; set; } public string Nazwa { get; set; } public short Aktywna { get; set; } public string Wersja { get; set; } public string Zastosowania { get; set; } public string Komentarz { get; set; } public decimal? CentrZgId { get; set; } public string DaneOs { get; set; } public virtual Sklep Sklep { get; set; } public virtual Zgodum Zg { get; set; } public virtual ICollection SklepFormZgods { get; set; } public virtual ICollection SklepTekstZgodies { get; set; } public virtual ICollection SklepZdarzOs { get; set; } }