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 } }