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 bool IsVisible { get; set; } public TACT_AXES_TYPE Type { get; set; } public int MasterId { get; set; } = 0; public int EnabledWord { get; set; } = 0; } }