Files
Servers/MoonlightServers.Shared/Admin/Nodes/NodeHealthDto.cs

8 lines
204 B
C#

namespace MoonlightServers.Shared.Admin.Nodes;
public class NodeHealthDto
{
public int RemoteStatusCode { get; set; }
public int StatusCode { get; set; }
public bool IsHealthy { get; set; }
}