Client.cs 479 B

123456789101112131415161718192021222324
  1. using ServerV2.JSONObjecten;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Net.Sockets;
  6. using System.Text;
  7. using System.Threading;
  8. using System.Threading.Tasks;
  9. namespace ServerV2
  10. {
  11. class Client
  12. {
  13. public TcpClient tcpClient;
  14. public string username;
  15. public Client(TcpClient tcpClient, string username)
  16. {
  17. this.tcpClient = tcpClient;
  18. this.username = username;
  19. }
  20. }
  21. }