RobotApp/RobotApp.VDA5050/Factsheet/ProtocolLimits.cs
Đăng Nguyễn 0d97684f70 update
2025-09-15 17:39:02 +07:00

14 lines
335 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotApp.VDA5050.Factsheet;
public class ProtocolLimits
{
[Required]
public MaxStringLens MaxStringLens { get; set; } = new();
[Required]
public MaxArrayLens MaxArrayLens { get; set; } = new();
[Required]
public Timing Timing { get; set; } = new();
}