using System.Collections.Generic; using static Thermo.Active.Model.Constants; namespace Thermo.Active.Model.ConfigModels { public class AxesConfigModel { public int Id; public string Name { get; set; } public bool IsSelectable { get; set; } = true; public TACT_AXES_TYPE Type { get; set; } } }