Product_Wms/WcsMain/ApiClient/AGV/Dto/AGVActionRequest.cs
2024-11-25 10:46:38 +08:00

15 lines
260 B
C#

using Newtonsoft.Json;
namespace WcsMain.ApiClient.AGV.Dto;
public class AGVActionRequest
{
[JsonProperty("agvCode")]
public string? AgvCode { get; set; }
[JsonProperty("feedbackCommand")]
public string? FeedbackCommand{ get; set; }
}