17 lines
346 B
C#
17 lines
346 B
C#
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace WcsMain.ApiServe.Dto.AGV;
|
|||
|
|
|
|||
|
|
public class AGVRequestActionRequest
|
|||
|
|
{
|
|||
|
|
[JsonPropertyName("agvCode")]
|
|||
|
|
public string? AgvCode { get; set; }
|
|||
|
|
|
|||
|
|
[JsonPropertyName("command")]
|
|||
|
|
public string? Command { get; set; }
|
|||
|
|
|
|||
|
|
[JsonPropertyName("jobId")]
|
|||
|
|
public string? JobId { get; set; }
|
|||
|
|
|
|||
|
|
}
|