using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Thermo.Active.Config
{
///
/// Live data for Thermo Active
///
public class LiveData
{
///
/// Current loaded recipe
///
public string RecipeName = "current.json";
///
/// Dictionary of all parameters and values
///
public Dictionary RecipeParameters;
///
/// Dictionary of all channels and relative setpoints
///
public Dictionary ChannelSetpoints;
}
}