消防培训系统服务器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
573 B

using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Threading.Tasks;
namespace AX.FireTrainingSys.Services
{
/// <summary>
/// 多角色桌面推演客户端用户。
/// </summary>
public class ClientUser
{
public string UserId { get; set; }
public string UserName { get; set; }
public string Role { get; set; }
public bool Online { get; set; } = true;
public bool Left { get; set; }
public string ConnectionId { get; set; }
}
}