20 lines
634 B
C#
20 lines
634 B
C#
using System.Collections.Generic;
|
|
using static Thermo.Active.Model.Constants;
|
|
|
|
namespace Thermo.Active.Model.ConfigModels
|
|
{
|
|
public class RecipeConfigModel
|
|
{
|
|
public int Id;
|
|
public TACT_PARAM_TYPE Category { get; set; }
|
|
public string SubCategory_1 { get; set; }
|
|
public string SubCategory_2 { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string Format { get; set; }
|
|
public int ScaleFactor { get; set; }
|
|
public int NumDec { get; set; }
|
|
public Dictionary<string, string> EnumVal { get; set; }
|
|
}
|
|
}
|