using Common.Models.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Server.MyClass.Views { /// /// 机器人ID和name显示类 /// public class RobotInfo { public int RobotId { get; set; } public string RobotName { get; set; } public UserType RobotType { get; set; } } }