28 lines
681 B
C#
28 lines
681 B
C#
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; }
|
|
}
|