Files
cms_thermo_active/Thermo.Active.Model/ConfigModels/RecipeConfigModel.cs
T
2020-04-24 16:54:24 +02:00

26 lines
725 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_RECIPE_CATEGORY 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; }
#if false
public string Label
{
get
{
return $"{Category}_{SubCategory_1}_{SubCategory_2}_{Name}".Replace("__", "_").Replace("__", "_").ToLower();
}
}
#endif
}
}