Add download speed to NetworkSocket

This commit is contained in:
Stone_Red
2023-12-14 12:29:17 +01:00
parent 661a506e76
commit d383d4d15b
4 changed files with 44 additions and 35 deletions
@@ -6,6 +6,8 @@ public class NetworkSocket
public int Port { get; set; }
public DateTime LastActive { get; set; }
public long DownloadSpeed { get; set; }
public NetworkSocket(string ipAddress, int port, DateTime lastActive)
{
IPAddress = ipAddress;