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 interpolated; public Dictionary machine; public Dictionary programmePos; public Dictionary toGo; public Dictionary followingErr; public DTOAxesModel() { interpolated = new Dictionary(); machine = new Dictionary(); programmePos = new Dictionary(); toGo = new Dictionary(); followingErr = new Dictionary(); } public struct AxisModel { public string name; public double value; } } }