Files
cms_thermo_active/Step.Model/ConfigModels/ToolManagerConfigModel.cs
T
Lucio Maranta 4accaacc06 Fix shanks query
Added options config
2018-07-03 17:22:32 +02:00

25 lines
868 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
{
public class ToolManagerConfigModel
{
public bool FamilyOptIsActive { get; set; }
public bool ShankOptIsActive { get; set; }
public bool MagPositionIsActive { get; set; }
public bool OffsetOptIsActive { get; set; }
public bool ReviveOptIsActive { get; set; }
public bool GammaOptIsActive { get; set; }
public bool LifeOptIsActive { get; set; }
public bool TcpOptIsActive { get; set; }
public bool CoolingOptIsActive { get; set; }
public bool MultidimensionalShankOptIsActive { get; set; }
public bool SelfAdaptivePathOptIsActive { get; set; }
public bool DynamicCompensationOptIsActive { get; set; }
}
}