using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TeamAAS_VP.Models.Robot
{
///
/// 机器人Arm
///
public struct RobotArm
{
///
/// 编号
///
public int Number;
///
/// 长度
///
public double Length;
///
/// 角度
///
public double Angle;
}
}