using Newtonsoft.Json;
namespace WcsMain.ApiClient.Shuttle.Dto;
///
/// 四向车库的响应
///
public class ContainerTaskResponse
{
///
/// 响应码
///
[JsonProperty("code")]
public string? Code { get; set; }
///
/// WMS 任务号
///
[JsonProperty("wmstaskid")]
public string? WmsTaskId { get; set; }
///
/// 信息
///
[JsonProperty("message")]
public string? Message { get; set; }
}