14 lines
390 B
C#
14 lines
390 B
C#
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; }
|
|
} |