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

16 lines
409 B
C#

#nullable disable
namespace Pcm.Db.Entities;
public class RegulaPozDok
{
public decimal DokId { get; set; }
public int Kolejnosc { get; set; }
public decimal RegulaId { get; set; }
public short Typ { get; set; }
public decimal? Wartosc { get; set; }
public string Tekst { get; set; }
public virtual PozDok PozDok { get; set; }
public virtual Regula Regula { get; set; }
}