CancelRobotTaskCommand.cs 274 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 namespace Rcs.Application.MessageBus.Commands; /// <summary> /// 取消机器人任务命令 /// @author zzy /// </summary> public class CancelRobotTaskCommand : MessageBase { /// <summary> /// 机器人ID /// </summary> public Guid RobotId { get; set; } }