2024-07-01 21:20:00 +02:00

19 lines
398 B
C#

namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class PozDokWBufPowiazanie
{
public decimal DokId { get; set; }
public int Kolejnosc { get; set; }
public short JakiePow { get; set; }
public short KtorePow { get; set; }
public decimal? Id { get; set; }
public string? Param { get; set; }
public virtual PozDok PozDok { get; set; } = null!;
}