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

23 lines
672 B
C#

namespace Pcm.Db.Entities;
public class RapWartPocz
{
public RapWartPocz()
{
RapWartPoczDanes = new HashSet<RapWartPoczDane>();
}
public decimal Rwpid { get; set; }
public short TypRap { get; set; }
public DateTime Data { get; set; }
public short Aktywny { get; set; }
public short? Param1 { get; set; }
public short? Param2 { get; set; }
public short? Param3 { get; set; }
public string ParamTxt { get; set; }
public DateTime Wykonano { get; set; }
public DateTime Zmiana { get; set; }
public short? Wersja { get; set; }
public virtual ICollection<RapWartPoczDane> RapWartPoczDanes { get; set; }
}