DRAB/Pcm.Db/Entities/SklepZgodum.cs
2025-07-11 10:50:46 +02:00

28 lines
987 B
C#

namespace Pcm.Db.Entities;
public class SklepZgodum
{
public SklepZgodum()
{
SklepFormZgods = new HashSet<SklepFormZgod>();
SklepTekstZgodies = new HashSet<SklepTekstZgody>();
SklepZdarzOs = new HashSet<SklepZdarzO>();
}
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<SklepFormZgod> SklepFormZgods { get; set; }
public virtual ICollection<SklepTekstZgody> SklepTekstZgodies { get; set; }
public virtual ICollection<SklepZdarzO> SklepZdarzOs { get; set; }
}