RobotApp/RobotApp.VDA5050/FactsheetExtend/ServerParam.cs
Đăng Nguyễn cf309cccba Init project
2025-09-10 10:48:39 +07:00

15 lines
396 B
C#

namespace RobotApp.VDA5050.FactsheetExtend;
#nullable disable
public class ServerParam
{
public string Server_ip { get; set; }
public string Server_port { get; set; }
public string Keepalive { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public string Client_protocol { get; set; }
public string Client_id { get; set; }
}