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

18 lines
391 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepPozParSzczeg
{
public decimal SklepId { get; set; }
public decimal SklepParId { get; set; }
public int Kolejnosc { get; set; }
public string DodInfo { get; set; } = null!;
public virtual SklepPozPar SklepPozPar { get; set; } = null!;
}