123456789101112131415161718192021222324 |
- using Aitex.Sorter.Common;
- using MECF.Framework.Common.Equipment;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.CommonData
- {
- public class RobotCycleParameter
- {
- public ModuleName ModuleName { get; set; }
- public object Parameter { get; set; }
- public Hand RobotArm { get; set; }
- public Flip PickRobotFlip { get; set; }
- public Flip PlaceRobotFlip { get; set; }
- }
- }
|