Files
FKGees/Blink.Backoffice.Services.PcmDb/Entities/PozDokWBufPowiazanie.cs
2026-05-19 16:45:53 +02:00

22 lines
461 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!;
}