using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class KthParWartosc { public KthParWartosc() { KthParams = new HashSet(); KthWartoscs = new HashSet(); SklepKthPrzydzials = new HashSet(); } 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 KthParams { get; set; } public virtual ICollection KthWartoscs { get; set; } public virtual ICollection SklepKthPrzydzials { get; set; } }