RobotAnimationData.cs 625 B

123456789101112131415161718192021222324
  1. using Aitex.Sorter.Common;
  2. using MECF.Framework.Common.Equipment;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace MECF.Framework.Common.CommonData
  9. {
  10. public class RobotAnimationData
  11. {
  12. public RobotAnimationData(RobotAction action, Hand hand, ModuleName target)
  13. {
  14. Action = action;
  15. Hand = hand;
  16. Target = target;
  17. }
  18. public RobotAction Action { get; set; }
  19. public Hand Hand { get; set; }
  20. public ModuleName Target { get; set; }
  21. }
  22. }