RobotNet/RobotNet.RobotShares/VDA5050/Factsheet/LoadDimensions.cs
2025-10-15 15:15:53 +07:00

14 lines
279 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotNet.RobotShares.VDA5050.Factsheet;
public class LoadDimensions
{
[Required]
public double Length { get; set; }
[Required]
public double Width { get; set; }
public double Height { get; set; }
}