namespace DuSoft.PcmDb.Entities; public partial class KthParam { public decimal KthParId { get; set; } public short Kolejnosc { get; set; } public string Nazwa { get; set; } = null!; public short Wymagany { get; set; } public decimal? KPWDomyslnaId { get; set; } public decimal? CentrKthParId { get; set; } public virtual KthParWartosc? KPWDomyslna { get; set; } public virtual ICollection KthParWartosc { get; set; } = new List(); }