2024-05-16 10:37:44 +02:00

22 lines
447 B
C#

using System;
using System.Collections.Generic;
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!;
}