2024-05-16 15:01:35 +02:00

13 lines
280 B
C#

namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class PozParSzczeg
{
public decimal ParId { get; set; }
public int Kolejnosc { get; set; }
public string DodInfo { get; set; } = null!;
public virtual PozPar PozPar { get; set; } = null!;
}