28 lines
955 B
C#
28 lines
955 B
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class SklepZdarzO
|
|
{
|
|
public SklepZdarzO()
|
|
{
|
|
SklepZdarzOsOpis = new HashSet<SklepZdarzOsOpi>();
|
|
}
|
|
|
|
public decimal SklepId { get; set; }
|
|
public decimal SklepKontrId { get; set; }
|
|
public string Kiedy { get; set; }
|
|
public short Akcja { get; set; }
|
|
public decimal? SklepTypOsId { get; set; }
|
|
public decimal? SklepZgId { get; set; }
|
|
public short? NowyStatus { get; set; }
|
|
public string Wersja { get; set; }
|
|
public string DodPar { get; set; }
|
|
public decimal? SklepUzId { get; set; }
|
|
public short? FormaDec { get; set; }
|
|
public DateTime? DataDec { get; set; }
|
|
|
|
public virtual SklepKontr Sklep { get; set; }
|
|
public virtual SklepUzytkownik Sklep1 { get; set; }
|
|
public virtual SklepZgodum Sklep2 { get; set; }
|
|
public virtual SklepTypO SklepNavigation { get; set; }
|
|
public virtual ICollection<SklepZdarzOsOpi> SklepZdarzOsOpis { get; set; }
|
|
} |