12345678910111213141516171819202122 |
- 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 RobotFlip { get; set; }
- }
- }
|