24 lines
786 B
C#
24 lines
786 B
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class Parametr
|
|
{
|
|
public Parametr()
|
|
{
|
|
GrWartoscs = new HashSet<GrWartosc>();
|
|
KatParams = new HashSet<KatParam>();
|
|
ParWartoscs = new HashSet<ParWartosc>();
|
|
TowWartoscs = new HashSet<TowWartosc>();
|
|
}
|
|
|
|
public decimal ParId { get; set; }
|
|
public string Nazwa { get; set; }
|
|
public short TypPar { get; set; }
|
|
public int WartMin { get; set; }
|
|
public int WartMax { get; set; }
|
|
public decimal? CentrParId { get; set; }
|
|
|
|
public virtual ICollection<GrWartosc> GrWartoscs { get; set; }
|
|
public virtual ICollection<KatParam> KatParams { get; set; }
|
|
public virtual ICollection<ParWartosc> ParWartoscs { get; set; }
|
|
public virtual ICollection<TowWartosc> TowWartoscs { get; set; }
|
|
} |