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; } = []; }