11 lines
296 B
C#
11 lines
296 B
C#
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; }
|
|
} |