2024-05-16 15:01:35 +02:00

21 lines
526 B
C#

namespace Blink.Backoffice.Services.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> KthParWartosc { get; set; } = new List<KthParWartosc>();
}