32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
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; }
|
|
} |