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