15 lines
332 B
C#
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!;
|
|
}
|