2024-07-01 21:20:00 +02:00

15 lines
342 B
C#

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