DRAB/Pcm.Db/Entities/KthParWartosc.cs
2025-07-11 10:50:46 +02:00

21 lines
685 B
C#

namespace Pcm.Db.Entities;
public class KthParWartosc
{
public KthParWartosc()
{
KthParams = new HashSet<KthParam>();
KthWartoscs = new HashSet<KthWartosc>();
SklepKthPrzydzials = new HashSet<SklepKthPrzydzial>();
}
public decimal Kpwid { get; set; }
public decimal KthParId { get; set; }
public short Kolejnosc { get; set; }
public string Tekst { get; set; }
public virtual KthParam KthPar { get; set; }
public virtual ICollection<KthParam> KthParams { get; set; }
public virtual ICollection<KthWartosc> KthWartoscs { get; set; }
public virtual ICollection<SklepKthPrzydzial> SklepKthPrzydzials { get; set; }
}