DRAB/Pcm.Db/Entities/SklepZdarzO.cs
2025-07-11 00:18:14 +02:00

33 lines
1023 B
C#

using System;
using System.Collections.Generic;
#nullable disable
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; }
}