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

20 lines
652 B
C#

namespace Pcm.Db.Entities;
public class RegulaPozParSzczeg
{
public decimal ParId { get; set; }
public int Kolejnosc { get; set; }
public decimal RegulaId { get; set; }
public short Typ { get; set; }
public int KolejnoscRegulaPar { get; set; }
public decimal? Wartosc1 { get; set; }
public decimal? Wartosc2 { get; set; }
public decimal? Wartosc3 { get; set; }
public decimal? Wartosc4 { get; set; }
public string Tekst { get; set; }
public short? Opcja1 { get; set; }
public short? Opcja2 { get; set; }
public virtual PozPar PozPar { get; set; }
public virtual Regula Regula { get; set; }
}