24 lines
575 B
C#
24 lines
575 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
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>();
|
|
}
|