17 lines
416 B
C#
17 lines
416 B
C#
namespace DuSoft.PcmDb.Entities;
|
|
|
|
public partial 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 SklepKontoLoj { get; set; } = null!;
|
|
|
|
public virtual SklepKontoLoj SklepKontoLojNavigation { get; set; } = null!;
|
|
}
|