1234567891011121314151617181920212223242526 |
- 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 RobotAnimationData
- {
- public RobotAnimationData(RobotAction action, Hand hand, ModuleName target,Flip flip)
- {
- Action = action;
- Hand = hand;
- Target = target;
- Flip = flip;
- }
- public RobotAction Action { get; set; }
- public Hand Hand { get; set; }
- public ModuleName Target { get; set; }
- public Flip Flip { get; set; }
- }
- }
|