using System; using TeamAAS.Robot.Enums; namespace TeamAAS.Robot.Models { /// /// 机器人类型描述(反射扫描得到的元数据,用于界面下拉框选择)。 /// public class RobotTypeInfo { public string TypeKey { get; set; } public string DisplayName { get; set; } public RobotBrand Brand { get; set; } public string Description { get; set; } public Type Type { get; set; } public override string ToString() => DisplayName; } }