mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-04 09:06:10 +02:00
13 lines
272 B
C#
13 lines
272 B
C#
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; }
|
|
} |