RobotAnimationData.cs 701 B

1234567891011121314151617181920212223242526
  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,Flip flip)
  13. {
  14. Action = action;
  15. Hand = hand;
  16. Target = target;
  17. Flip = flip;
  18. }
  19. public RobotAction Action { get; set; }
  20. public Hand Hand { get; set; }
  21. public ModuleName Target { get; set; }
  22. public Flip Flip { get; set; }
  23. }
  24. }