Dekrety #1
This commit is contained in:
23
Blink.Backoffice.Services.PcmDb/Entities/RegulaPozDok.cs
Normal file
23
Blink.Backoffice.Services.PcmDb/Entities/RegulaPozDok.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user