Files
Moonlight/Moonlight.Shared/Http/Responses/Admin/Sys/SystemOverviewResponse.cs
2024-11-08 14:49:49 +01:00

9 lines
262 B
C#

namespace Moonlight.Shared.Http.Responses.Admin.Sys;
public class SystemOverviewResponse
{
public int CpuUsage { get; set; }
public long MemoryUsage { get; set; }
public string OperatingSystem { get; set; }
public TimeSpan Uptime { get; set; }
}