sockscape/server/Websocket/Connection.cs

19 lines
329 B
C#
Raw Normal View History

2017-04-21 21:04:03 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
2017-04-23 04:55:29 +00:00
using System.Net.Sockets;
2017-04-21 21:04:03 +00:00
using System.Text;
using System.Threading.Tasks;
namespace CircleScape.Websocket {
class Connection {
2017-04-23 04:55:29 +00:00
private TcpClient Socket;
public Connection(TcpClient sock) {
Socket = sock;
}
2017-04-21 21:04:03 +00:00
}
}