Files
cms_thermo_active/Step.Model/DTOModels/DTOAxesModel.cs
T
Lucio Maranta 5bd278fa69 * Added NC comunication
* Added NC handler class
* Fixed threads
* Added threads: AXES, ALARMS, GENERIC INFO + API
* Refactoring
2017-12-20 17:17:02 +01:00

34 lines
926 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.DTOModels
{
public class DTOAxesModel
{
public Dictionary<string, double> interpolated;
public Dictionary<string, double> machine;
public Dictionary<string, double> programmePos;
public Dictionary<string, double> toGo;
public Dictionary<string, double> followingErr;
public DTOAxesModel()
{
interpolated = new Dictionary<string, double>();
machine = new Dictionary<string, double>();
programmePos = new Dictionary<string, double>();
toGo = new Dictionary<string, double>();
followingErr = new Dictionary<string, double>();
}
public struct AxisModel
{
public string name;
public double value;
}
}
}