NodeName.cs 473 B

123456789101112
  1. namespace SHJX.Service.Control.Common.Constants
  2. {
  3. public class NodeName
  4. {
  5. public const string AXIS_MOVEMENT_BY_X = "AxisMovementByX";
  6. public const string AXIS_MOVEMENT_BY_Y = "AxisMovementByY";
  7. public const string AXIS_MOVEMENT_BY_Z = "AxisMovementByZ";
  8. public const string AXIS_GOBACK_BY_Z = "AxisGobackByZ";
  9. public const string TONGS_GRAB = "TongsGrab";
  10. public const string TONGS_LOOSEN = "TongsLoosen";
  11. }
  12. }