Implemented "roundtrip" status checking. Added node ssl field.

This commit is contained in:
2024-12-13 20:12:56 +01:00
parent 3c88b60e8d
commit d15c5326ed
16 changed files with 872 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
namespace MoonlightServers.DaemonShared.Http.Responses.Sys;
public class SystemStatusResponse
{
public bool TripSuccess { get; set; }
public TimeSpan TripTime { get; set; }
public string? TripError { get; set; }
public string Version { get; set; }
}