13 lines
315 B
C#
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; }
|
|
} |