1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

Add instance uptime to API info response

This update includes the instance uptime in the API info response.
This commit is contained in:
Ayymoss
2024-09-04 13:55:20 +01:00
committed by RaidMax
parent a1a69242f7
commit 0a8bbf2997
2 changed files with 5 additions and 1 deletions

View File

@ -10,6 +10,7 @@ public class InfoResponse
public MetricSnapshot<int> TotalRecentClients { get; set; }
public MetricSnapshot<int?> MaxConcurrentClients { get; set; }
public TimeSpan Uptime { get; set; }
}
public class MetricSnapshot<T>