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

28 lines
840 B
C#

using System.Collections.Generic;
#nullable disable
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; }
}