10 lines
297 B
C#
10 lines
297 B
C#
namespace RobotNet.VDA5050;
|
|
|
|
public record VDA5050Setting
|
|
{
|
|
public string SerialNumber { get; set; } = string.Empty;
|
|
public string Manufacturer { get; set; } = string.Empty;
|
|
public string Version { get; set; } = string.Empty;
|
|
public string? TopicPrefix { get; set; }
|
|
}
|