First commit

This commit is contained in:
2026-06-28 01:38:39 +03:00
commit b53c690457
16 changed files with 358 additions and 0 deletions
@@ -0,0 +1,10 @@
namespace MonitorAgent.API.Contracts;
public record class MemoryResponse
(
int MemTotal,
int MemFree,
int MemAvailable,
int SwapTotal,
int SwapFree
);