Files
tnb.server/message/Tnb.Message.Entitys/Dto/IM/OnlineUserListOutput.cs
2023-03-13 15:00:34 +08:00

48 lines
1021 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.DependencyInjection;
namespace JNPF.Message.Entitys.Dto.IM;
/// <summary>
/// 在线用户
/// 版 本V3.2.0
/// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
/// 日 期2017.09.20.
/// </summary>
[SuppressSniffer]
public class OnlineUserListOutput
{
/// <summary>
/// 用户ID.
/// </summary>
public string userId { get; set; }
/// <summary>
/// 用户账号.
/// </summary>
public string userAccount { get; set; }
/// <summary>
/// 用户名称.
/// </summary>
public string userName { get; set; }
/// <summary>
/// 登录时间.
/// </summary>
public string loginTime { get; set; }
/// <summary>
/// 登录IP地址.
/// </summary>
public string loginIPAddress { get; set; }
/// <summary>
/// 登录平台设备.
/// </summary>
public string loginPlatForm { get; set; }
/// <summary>
/// 租户ID.
/// </summary>
public string tenantId { get; set; }
}