Initial commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace RobotNet10.FleetManager.Services.OpenACS;
|
||||
|
||||
public class AGVLocation
|
||||
{
|
||||
[JsonPropertyName("world_x")]
|
||||
[Required]
|
||||
public string X { get; set; } = "0";
|
||||
|
||||
[JsonPropertyName("world_y")]
|
||||
[Required]
|
||||
public string Y { get; set; } = "0";
|
||||
|
||||
[JsonPropertyName("world_z")]
|
||||
[Required]
|
||||
public string Z { get; set; } = "0";
|
||||
|
||||
[JsonPropertyName("direction")]
|
||||
[Required]
|
||||
public string Direction { get; set; } = "0";
|
||||
}
|
||||
Reference in New Issue
Block a user