17 lines
485 B
C#
17 lines
485 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; }
|
|
}
|
|
}
|