15 lines
449 B
C#
15 lines
449 B
C#
using RobotApp.VDA5050.Factsheet;
|
|
|
|
namespace RobotApp.VDA5050.State;
|
|
|
|
public class Load
|
|
{
|
|
public string LoadId { get; set; } = string.Empty;
|
|
public string LoadType { get; set; } = string.Empty;
|
|
public string LoadPosition { get; set; } = string.Empty;
|
|
public BoundingBoxReference BoundingBoxReference { get; set; } = new();
|
|
public LoadDimensions LoadDimensions { get; set; } = new();
|
|
public double Weight { get; set; }
|
|
|
|
}
|