Product_Wms/WcsMain/ApiClient/AGV/Dto/AGVActionRequest.cs

15 lines
260 B
C#
Raw Normal View History

2024-11-25 10:46:38 +08:00
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; }
}