This commit is contained in:
Đăng Nguyễn
2025-10-28 17:28:46 +07:00
parent 6eeed8c7b4
commit 643a34a4b4
22 changed files with 1575 additions and 72 deletions

View File

@@ -1,5 +1,6 @@
namespace RobotApp.VDA5050;
public class VDA5050Setting
{
public string HostServer { get; set; } = string.Empty;
@@ -7,6 +8,8 @@ public class VDA5050Setting
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 string Version { get; set; } = "2.1.0";
public int PublishRepeat { get; set; } = 2;
public bool EnablePassword { get; set; } = false;
public bool EnableTls { get; set; } = false;
}