using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class Zgodum { public Zgodum() { CentrStanZgodies = new HashSet(); FormZgods = new HashSet(); SklepZgoda = new HashSet(); StanZgodies = new HashSet(); TekstZgodies = new HashSet(); ZdarzOs = new HashSet(); } public decimal ZgId { get; set; } public string Nazwa { get; set; } public short Aktywna { get; set; } public DateTime Zmiana { 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 ICollection CentrStanZgodies { get; set; } public virtual ICollection FormZgods { get; set; } public virtual ICollection SklepZgoda { get; set; } public virtual ICollection StanZgodies { get; set; } public virtual ICollection TekstZgodies { get; set; } public virtual ICollection ZdarzOs { get; set; } }