12 lines
287 B
C#
12 lines
287 B
C#
using System.Collections.Concurrent;
|
|
using System.Net.WebSockets;
|
|
|
|
namespace XNet.Business.Entity
|
|
{
|
|
public class WebSocketInfo
|
|
{
|
|
public WebSocket WebSocket { get; set; } = null!;
|
|
public ConcurrentDictionary<string, bool> RoomIds { get; set; } = new();
|
|
}
|
|
}
|