20 lines
407 B
C#
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!;
|
|
}
|