22 lines
804 B
C#
22 lines
804 B
C#
namespace RobotApp.VDA5050.Factsheet;
|
|
|
|
public class MaxArrayLens
|
|
{
|
|
public int OrderNodes { get; set; }
|
|
public int OrderEdges { get; set; }
|
|
public int NodeActions { get; set; }
|
|
public int EdgeActions { get; set; }
|
|
public int ActionsActionsParameters { get; set; }
|
|
public int InstantActions { get; set; }
|
|
public int TrajectoryKnotVector { get; set; }
|
|
public int TrajectoryControlPoints { get; set; }
|
|
public int StateNodeStates { get; set; }
|
|
public int StateEdgeStates { get; set; }
|
|
public int StateLoads { get; set; }
|
|
public int StateActionStates { get; set; }
|
|
public int StateErrors { get; set; }
|
|
public int StateInformation { get; set; }
|
|
public int ErrorErrorReferences { get; set; }
|
|
public int InformationInfoReferences { get; set; }
|
|
}
|