namespace DuSoft.PcmDb.Entities; public partial class Zgoda { public decimal ZgId { get; set; } public string Nazwa { get; set; } = null!; 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 CentrStanZgody { get; set; } = new List(); public virtual ICollection FormZgod { get; set; } = new List(); public virtual ICollection SklepZgoda { get; set; } = new List(); public virtual ICollection StanZgody { get; set; } = new List(); public virtual ICollection TekstZgody { get; set; } = new List(); public virtual ICollection ZdarzOs { get; set; } = new List(); }