14 lines
310 B
C#
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; } = [];
|
|
}
|