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