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