8 lines
204 B
C#
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; }
|
|
} |