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 LocalizedNames { get; set; } } }