2024-07-01 21:28:20 +02:00

15 lines
332 B
C#

namespace DuSoft.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!;
}