using System; using System.Collections.Generic; namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class SklepParBon { public decimal SklepId { get; set; } public decimal SklepParId { get; set; } public short Kolejnosc { get; set; } public decimal Kwota { get; set; } public string Typ { get; set; } = null!; public string Numer { get; set; } = null!; public virtual SklepParagon SklepParagon { get; set; } = null!; }