Initial commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace RobotNet.VDA5050.Factsheet;
|
||||
|
||||
public class MaxStringLens
|
||||
{
|
||||
[JsonPropertyName("msgLen")]
|
||||
public int MsgLen { get; set; }
|
||||
|
||||
[JsonPropertyName("topicSerialLen")]
|
||||
public int TopicSerialLen { get; set; }
|
||||
|
||||
[JsonPropertyName("topicElemLen")]
|
||||
public int TopicElemLen { get; set; }
|
||||
|
||||
[JsonPropertyName("idLen")]
|
||||
public int IdLen { get; set; }
|
||||
|
||||
[JsonPropertyName("idNumericalOnly")]
|
||||
public bool IdNumericalOnly { get; set; }
|
||||
|
||||
[JsonPropertyName("enumLen")]
|
||||
public int EnumLen { get; set; }
|
||||
|
||||
[JsonPropertyName("loadIdLen")]
|
||||
public int LoadIdLen { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user