mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-04 00:56:09 +02:00
15 lines
373 B
C#
15 lines
373 B
C#
namespace HyperbolicDownloaderApi.Networking;
|
|
|
|
public class NetworkSocket
|
|
{
|
|
public string IPAddress { get; set; }
|
|
public int Port { get; set; }
|
|
public DateTime LastActive { get; set; }
|
|
|
|
public NetworkSocket(string ipAddress, int port, DateTime lastActive)
|
|
{
|
|
IPAddress = ipAddress;
|
|
Port = port;
|
|
LastActive = lastActive;
|
|
}
|
|
} |