RobotApp/RobotApp.VDA5050/State/Load.cs
Đăng Nguyễn d6fe1d9d52 update
2025-09-26 08:48:50 +07:00

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