AHTC/RGD/RGD.HaiRouAPI/HaiRouModel/LetRobotGo.cs

9 lines
197 B
C#
Raw Normal View History

2025-05-19 09:22:33 +08:00
namespace RGD.HaiRouAPI.HaiRouModel
{
public class LetRobotGo
{
private string RobotCode;
public string robotCode { get => RobotCode; set => RobotCode = value; }
}
}