33 lines
940 B
C#
33 lines
940 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class ZdarzO
|
|
{
|
|
public ZdarzO()
|
|
{
|
|
ZdarzOsOpis = new HashSet<ZdarzOsOpi>();
|
|
}
|
|
|
|
public decimal KontrId { get; set; }
|
|
public string Kiedy { get; set; }
|
|
public short Akcja { get; set; }
|
|
public decimal? TypOsId { get; set; }
|
|
public decimal? ZgId { get; set; }
|
|
public short? NowyStatus { get; set; }
|
|
public string Wersja { get; set; }
|
|
public DateTime Zmiana { get; set; }
|
|
public string DodPar { get; set; }
|
|
public decimal? UzId { get; set; }
|
|
public short? FormaDec { get; set; }
|
|
public DateTime? DataDec { get; set; }
|
|
|
|
public virtual Kontrahent Kontr { get; set; }
|
|
public virtual TypO TypOs { get; set; }
|
|
public virtual Uzytkownik Uz { get; set; }
|
|
public virtual Zgodum Zg { get; set; }
|
|
public virtual ICollection<ZdarzOsOpi> ZdarzOsOpis { get; set; }
|
|
} |