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