18c88a5625
Added Axes Reset procedure into power on data Fixes and refactor
17 lines
383 B
C#
17 lines
383 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static CMS_CORE_Library.DataStructures;
|
|
|
|
namespace Step.Model.DTOModels
|
|
{
|
|
public class DTOPowerOnDataModel
|
|
{
|
|
public PrePowerOnModel PrePowerOn;
|
|
public PostPowerOnModel PostPowerOn;
|
|
public AxisResetDataModel AxisReset;
|
|
}
|
|
}
|