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

15 lines
338 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotNet.RobotShares.VDA5050.Factsheet;
#nullable disable
public class ProtocolLimits
{
[Required]
public MaxStringLens MaxStringLens { get; set; }
[Required]
public MaxArrayLens MaxArrayLens { get; set; }
[Required]
public Timing Timing { get; set; }
}