mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-05 23:40:38 +02:00
Initial commit
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user