Files
Servers/MoonlightServers.DaemonShared/DaemonSide/Http/Responses/Statistics/StatisticsApplicationResponse.cs

8 lines
246 B
C#

namespace MoonlightServers.DaemonShared.DaemonSide.Http.Responses.Statistics;
public class StatisticsApplicationResponse
{
public int CpuUsage { get; set; }
public long MemoryUsage { get; set; }
public TimeSpan Uptime { get; set; }
}