This commit is contained in:
Đăng Nguyễn
2025-09-15 17:39:02 +07:00
parent cf309cccba
commit 0d97684f70
69 changed files with 1363 additions and 412 deletions

View File

@@ -1,19 +1,12 @@
namespace RobotApp.VDA5050;
#nullable disable
public class VDA5050Setting
{
public bool ServerEnable { get; set; }
public string HostServer { get; set; }
public int Port { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public string Manufacturer { get; set; }
public string Version { get; set; }
public int Repeat { get; set; }
public int ConnectionTimeoutSeconds { get; set; }
public int ConnectionBacklog { set; get; }
public int KeepAliveInterval { get; set; }
public int CheckingRobotMsgTimout { get; set; }
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;
}