21 lines
449 B
C#
21 lines
449 B
C#
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial 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; } = null!;
|
|
|
|
public virtual Regula Regula { get; set; } = null!;
|
|
}
|