Init project
This commit is contained in:
14
RobotApp.VDA5050/Factsheet/ProtocolLimits.cs
Normal file
14
RobotApp.VDA5050/Factsheet/ProtocolLimits.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user