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

18 lines
400 B
C#

using System;
using System.Collections.Generic;
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!;
}