RobotApp/RobotApp.VDA5050/State/Load.cs
Đăng Nguyễn cf309cccba Init project
2025-09-10 10:48:39 +07:00

17 lines
401 B
C#

using RobotApp.VDA5050.Factsheet;
namespace RobotApp.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; }
}