Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/Message/Response/WebSocket/ConnUser.cs
2025-07-04 09:50:02 +08:00

43 lines
807 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 System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.WebSocket
{
public class ConnUser
{
/// <summary>
/// 用户id为客户端的id可能为用户ID也可能为操作ID
/// </summary>
public long Id
{
get;
set;
}
/// <summary>
/// 0:报表使用
/// </summary>
public int Type
{
get;
set;
}
/// <summary>
/// 当前秒,用于区分多客户端连接的情况,可以为当前时间戳
/// </summary>
public long TimeStamp
{
get;
set;
}
}
}