XNet/XNet.Business/Entity/WebSocketInfo.cs
2025-12-30 11:22:46 +08:00

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();
}
}