15 lines
340 B
C#
15 lines
340 B
C#
using System.Net.WebSockets;
|
|
|
|
namespace MauMau_Server.Websockets;
|
|
|
|
public class ConnectionInstance
|
|
{
|
|
public string ConnectionId { get; set; }
|
|
public WebSocket Socket { get; set; }
|
|
|
|
public ConnectionInstance(string connectionId, WebSocket socket)
|
|
{
|
|
ConnectionId = connectionId;
|
|
Socket = socket;
|
|
}
|
|
} |