2024-05-16 10:37:44 +02:00

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!;
}