using System.Net.WebSockets; namespace MauMau_Server.Websockets; public class ConnectionInstance { public string Name { get; set; } public string ConnectionId { get; set; } public WebSocket Socket { get; set; } public ConnectionInstance(string name, string connectionId, WebSocket socket) { Name = name; ConnectionId = connectionId; Socket = socket; } }