Files
I150/srcs/RobotNet10/Shared/RobotNet.VDA5050/VDA5050Setting.cs
2026-07-03 16:37:12 +07:00

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; }
}