This commit is contained in:
Đăng Nguyễn
2025-09-15 17:39:02 +07:00
parent cf309cccba
commit 0d97684f70
69 changed files with 1363 additions and 412 deletions

View File

@@ -2,13 +2,12 @@
namespace RobotApp.VDA5050.Factsheet;
#nullable disable
public class ProtocolLimits
{
[Required]
public MaxStringLens MaxStringLens { get; set; }
public MaxStringLens MaxStringLens { get; set; } = new();
[Required]
public MaxArrayLens MaxArrayLens { get; set; }
public MaxArrayLens MaxArrayLens { get; set; } = new();
[Required]
public Timing Timing { get; set; }
public Timing Timing { get; set; } = new();
}