13 lines
434 B
C#
13 lines
434 B
C#
namespace RobotApp.VDA5050;
|
|
|
|
public class VDA5050Setting
|
|
{
|
|
public string HostServer { get; set; } = string.Empty;
|
|
public int Port { get; set; } = 1883;
|
|
public string UserName { get; set; } = "robotics";
|
|
public string Password { get; set; } = "robotics";
|
|
public string Manufacturer { get; set; } = "PhenikaaX";
|
|
public string Version { get; set; } = "0.0.1";
|
|
public int PublishRepeat { get; set; } = 2;
|
|
}
|