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