Files
HyperbolicDownloader/HyperbolicDownloader/Networking/NetworkSocket.cs
T
Stone_Red 2df780709f - Optimize downloading process
- Add expiration time to inactive hosts
2022-01-27 21:40:29 +01:00

15 lines
372 B
C#

namespace HyperbolicDownloader.Networking;
internal 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;
}
}