12 lines
363 B
C#
12 lines
363 B
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class SklepPowKontLoj
|
|
{
|
|
public decimal SklepId { get; set; }
|
|
public decimal SklepNoweKontoId { get; set; }
|
|
public short RodzajPow { get; set; }
|
|
public decimal SklepStareKontoId { get; set; }
|
|
|
|
public virtual SklepKontoLoj Sklep { get; set; }
|
|
public virtual SklepKontoLoj SklepNavigation { get; set; }
|
|
} |