17 lines
425 B
C#
17 lines
425 B
C#
using RobotNet.RobotShares.VDA5050.Factsheet;
|
|
|
|
namespace RobotNet.RobotShares.VDA5050.State;
|
|
|
|
#nullable disable
|
|
|
|
public class Load
|
|
{
|
|
public string LoadId { get; set; }
|
|
public string LoadType { get; set; }
|
|
public string LoadPosition { get; set; }
|
|
public BoundingBoxReference BoundingBoxReference { get; set; }
|
|
public LoadDimensions LoadDimensions { get; set; }
|
|
public double Weight { get; set; }
|
|
|
|
}
|