5bd278fa69
* Added NC handler class * Fixed threads * Added threads: AXES, ALARMS, GENERIC INFO + API * Refactoring
34 lines
926 B
C#
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;
|
|
}
|
|
}
|
|
}
|