RobotNet/RobotNet.RobotShares/VDA5050/FactsheetExtend/ServerParam.cs
2025-10-15 15:15:53 +07:00

15 lines
408 B
C#

namespace RobotNet.RobotShares.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; }
}