ResetRobotCommand.cs 263 Bytes
namespace Rcs.Application.MessageBus.Commands;

/// <summary>
/// 复位机器人命令
/// @author zzy
/// </summary>
public class ResetRobotCommand : MessageBase
{
    /// <summary>
    /// 机器人ID
    /// </summary>
    public Guid RobotId { get; set; }
}