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

15 lines
351 B
C#

namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class PowKontLoj
{
public decimal NoweKontoId { get; set; }
public short RodzajPow { get; set; }
public decimal StareKontoId { get; set; }
public virtual KontoLoj NoweKonto { get; set; } = null!;
public virtual KontoLoj StareKonto { get; set; } = null!;
}