using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.Agv
{
public class AgvFinishResponse
{
///
/// 返回码
///
public string Code { get; set; }
///
/// 返回消息
///
public string Content { get; set; }
///
/// 结果
///
public bool Success { get; set; }
}
}