15 lines
260 B
C#
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; }
|
|
|
|
|
|
}
|