Files
2020-09-12 16:11:43 +02:00

17 lines
382 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; }
}
}