17 lines
400 B
C#
17 lines
400 B
C#
using System.Collections.Generic;
|
|
using static Thermo.Active.Model.Constants;
|
|
|
|
namespace Thermo.Active.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; }
|
|
}
|
|
}
|