18 lines
524 B
C#
18 lines
524 B
C#
using System.Collections.Generic;
|
|
using static Thermo.Active.Model.Constants;
|
|
|
|
namespace Thermo.Active.Model.ConfigModels
|
|
{
|
|
public class ThermoProdConfigModel
|
|
{
|
|
public TACT_PROD_CATEGORY Category { get; set; }
|
|
public string Name { get; set; }
|
|
public string Label { get; set; }
|
|
public string UM { get; set; }
|
|
public int ScaleFactor { get; set; }
|
|
public int NumDec { get; set; }
|
|
public int MinVal { get; set; }
|
|
public int MaxVal { get; set; }
|
|
}
|
|
}
|