Implemented node crud and status health check. Added daemon status health endpoint. Refactored project structure. Added sidebar items and ui views
This commit is contained in:
14
MoonlightServers.DaemonShared/Http/ProblemDetails.cs
Normal file
14
MoonlightServers.DaemonShared/Http/ProblemDetails.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace MoonlightServers.DaemonShared.Http;
|
||||
|
||||
public class ProblemDetails
|
||||
{
|
||||
public string Type { get; set; }
|
||||
|
||||
public string Title { get; set; }
|
||||
|
||||
public int Status { get; set; }
|
||||
|
||||
public string? Detail { get; set; }
|
||||
|
||||
public Dictionary<string, string[]>? Errors { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user