36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class Zgodum
|
|
{
|
|
public Zgodum()
|
|
{
|
|
CentrStanZgodies = new HashSet<CentrStanZgody>();
|
|
FormZgods = new HashSet<FormZgod>();
|
|
SklepZgoda = new HashSet<SklepZgodum>();
|
|
StanZgodies = new HashSet<StanZgody>();
|
|
TekstZgodies = new HashSet<TekstZgody>();
|
|
ZdarzOs = new HashSet<ZdarzO>();
|
|
}
|
|
|
|
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<CentrStanZgody> CentrStanZgodies { get; set; }
|
|
public virtual ICollection<FormZgod> FormZgods { get; set; }
|
|
public virtual ICollection<SklepZgodum> SklepZgoda { get; set; }
|
|
public virtual ICollection<StanZgody> StanZgodies { get; set; }
|
|
public virtual ICollection<TekstZgody> TekstZgodies { get; set; }
|
|
public virtual ICollection<ZdarzO> ZdarzOs { get; set; }
|
|
} |