Добавил получение количества tcp и udp соединений

This commit is contained in:
2026-07-02 12:21:22 +03:00
parent 8efeb0e4dc
commit e0b13d510d
5 changed files with 43 additions and 3 deletions
@@ -0,0 +1,7 @@
namespace MonitorAgent.API.Contracts;
public class ConnectionsResponse
{
public int Tcp {get;set;}
public int Udp {get;set;}
}