DeleteRobotTaskCommand.cs 276 Bytes
using System;

namespace Rcs.Application.MessageBus.Commands;

/// <summary>
/// 删除任务命令
/// @author zzy
/// </summary>
public class DeleteRobotTaskCommand : MessageBase
{
    /// <summary>
    /// 任务ID
    /// </summary>
    public Guid TaskId { get; set; }
}