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

20 lines
407 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class ParBon
{
public decimal ParId { get; set; }
public short Kolejnosc { get; set; }
public decimal Kwota { get; set; }
public string Typ { get; set; } = null!;
public string Numer { get; set; } = null!;
public virtual Paragon Par { get; set; } = null!;
}