23 lines
383 B
C#
23 lines
383 B
C#
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<T> : ConnUser
|
|
{
|
|
/// <summary>
|
|
/// 连接对象
|
|
/// </summary>
|
|
public T Conn
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
|
|
}
|
|
}
|