22 lines
544 B
C#
22 lines
544 B
C#
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
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; }
|
|
} |