namespace Moonlight.Shared.Http.Responses.Admin; public record DiagnoseResultDto(DiagnoseLevel Level, string Title, string[] Tags, string? Message, string? StackStrace, string? SolutionUrl, string? ReportUrl); public enum DiagnoseLevel { Error = 0, Warning = 1, Healthy = 2 }