Files
cms_thermo_active/Step.Model/ConfigModels/HeadsConfigModel.cs
T
Lucio Maranta 38b138942f Added config "FixedHead"
FIx tool table
2019-04-02 17:12:01 +02:00

17 lines
383 B
C#

using System.Collections.Generic;
using static Step.Model.Constants;
namespace Step.Model.ConfigModels
{
public class HeadsConfigModel
{
public int Id;
public HEAD_TYPE Type;
public short WarningLimit;
public short AlarmLimit;
public bool FixedHead;
public Dictionary<string, string> LocalizedNames { get; set; }
}
}