RobotNet/RobotNet.RobotShares/VDA5050/State/Load.cs
2025-10-15 15:15:53 +07:00

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; }
}