DRAB/Pcm.Db/Entities/PowKontLoj.cs
2025-07-11 00:18:14 +02:00

13 lines
315 B
C#

#nullable disable
namespace Pcm.Db.Entities;
public class PowKontLoj
{
public decimal NoweKontoId { get; set; }
public short RodzajPow { get; set; }
public decimal StareKontoId { get; set; }
public virtual KontoLoj NoweKonto { get; set; }
public virtual KontoLoj StareKonto { get; set; }
}