12 lines
360 B
C#
12 lines
360 B
C#
namespace RobotNet10.FleetManager.Services.RobotConnections.Models;
|
|
|
|
/// <summary>
|
|
/// VDA5050 Protocol configuration
|
|
/// </summary>
|
|
public class VDA5050ProtocolConfig
|
|
{
|
|
public string Manufacturer { get; set; } = string.Empty;
|
|
public string Version { get; set; } = string.Empty;
|
|
public string TopicPrefix { get; set; } = string.Empty;
|
|
}
|