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,10 @@
namespace MoonlightServers.Shared.Http.Responses.Admin.Nodes.Sys;
public class NodeSystemStatusResponse
{
public bool RoundtripSuccess { get; set; }
public bool RoundtripRemoteFailure { get; set; }
public TimeSpan RoundtripTime { get; set; }
public string? RoundtripError { get; set; }
public string Version { get; set; }
}