30 lines
799 B
C#
30 lines
799 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Thermo.Active.Model.DTOModels.ThRecipe
|
|
{
|
|
/// <summary>
|
|
/// Live data for Thermo Active
|
|
/// </summary>
|
|
public class LiveData
|
|
{
|
|
/// <summary>
|
|
/// Current loaded recipe
|
|
/// </summary>
|
|
public string RecipeName = "current.json";
|
|
/// <summary>
|
|
/// Dictionary of all parameters and values
|
|
/// </summary>
|
|
public Dictionary<string, double> RecipeParameters;
|
|
/// <summary>
|
|
/// Dictionary of all channels and relative setpoints
|
|
/// </summary>
|
|
public Dictionary<int, int> ChannelSetpoints;
|
|
/// <summary>
|
|
/// Recipe Overview
|
|
/// </summary>
|
|
public Dictionary<RecipeSection, RecipeCatStatus> RecipeOverview;
|
|
}
|
|
|
|
|
|
}
|