* Refactored configuration

* Added Selected process and select process action
* Added Heads signalR and configuration
This commit is contained in:
Lucio Maranta
2018-03-14 17:36:13 +01:00
parent d04e9179e2
commit b0b7659ada
25 changed files with 604 additions and 162 deletions
@@ -0,0 +1,13 @@
using static Step.Utils.Constants;
namespace Step.Model.ConfigModels
{
public class HeadsConfigModel
{
public int Id;
public string Name;
public HEAD_TYPE Type;
public short WarningLimit;
public short AlarmLimit;
}
}