18 lines
490 B
C#
18 lines
490 B
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class KthParam
|
|
{
|
|
public KthParam()
|
|
{
|
|
KthParWartoscs = new HashSet<KthParWartosc>();
|
|
}
|
|
|
|
public decimal KthParId { get; set; }
|
|
public short Kolejnosc { get; set; }
|
|
public string Nazwa { get; set; }
|
|
public short Wymagany { get; set; }
|
|
public decimal? KpwdomyslnaId { get; set; }
|
|
|
|
public virtual KthParWartosc Kpwdomyslna { get; set; }
|
|
public virtual ICollection<KthParWartosc> KthParWartoscs { get; set; }
|
|
} |