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

14 lines
267 B
C#

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