Files
I150/srcs/RobotNet10/Shared/RobotNet.VDA5050/Factsheet/AgvGeometry.cs
2026-07-03 16:37:12 +07:00

17 lines
428 B
C#

using System.Text.Json.Serialization;
namespace RobotNet.VDA5050.Factsheet;
public class AgvGeometry
{
[JsonPropertyName("wheelDefinitions")]
public WheelDefinition[] WheelDefinitions { get; set; } = [];
[JsonPropertyName("envelopes2d")]
public Envelopes2d[] Envelopes2d { get; set; } = [];
[JsonPropertyName("envelopes3d")]
public Envelopes3d[] Envelopes3d { get; set; } = [];
}