Initial commit

This commit is contained in:
Stone_Red
2022-01-25 22:20:53 +01:00
commit ec6778b2be
16 changed files with 1150 additions and 0 deletions
@@ -0,0 +1,13 @@
namespace HyperbolicDowloader.Networking;
internal class NetworkSocket
{
public NetworkSocket(string ipAddress, int port)
{
IPAddress = ipAddress;
Port = port;
}
public string IPAddress { get; set; }
public int Port { get; set; }
}