21 lines
507 B
C#
21 lines
507 B
C#
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> KthParWartosc { get; set; } = new List<KthParWartosc>();
|
|
}
|