20 lines
484 B
C#
20 lines
484 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.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!;
|
|
}
|