using System.ComponentModel.DataAnnotations; namespace RobotApp.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; } }