DRAB/Pcm.Db/Entities/KthParam.cs
2025-07-11 00:18:14 +02:00

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; }
}