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

14 lines
310 B
C#

using System.Text.Json.Serialization;
namespace RobotNet.VDA5050.Factsheet;
public class LoadSpecification
{
[JsonPropertyName("loadPositions")]
public string[] LoadPositions { get; set; } = [];
[JsonPropertyName("loadSets")]
public LoadSet[] LoadSets { get; set; } = [];
}