mirror of
https://github.com/ryzij/ServerMonitor.git
synced 2026-07-14 11:56:56 +00:00
10 lines
171 B
C#
10 lines
171 B
C#
namespace MonitorAgent.API.Contracts;
|
|
|
|
public record class MemoryResponse
|
|
(
|
|
int MemTotal,
|
|
int MemFree,
|
|
int MemAvailable,
|
|
int SwapTotal,
|
|
int SwapFree
|
|
); |