new Dashboard

This commit is contained in:
2025-08-26 18:54:17 +02:00
parent aa35e83f6b
commit 1c0fab71bb
7 changed files with 220 additions and 53 deletions

View File

@@ -0,0 +1,16 @@
using System.Collections.Generic;
namespace Watcher.Models
{
public class HealthStatus
{
public DateTime Timestamp { get; set; }
public bool NetworkOk { get; set; }
public bool DatabaseOk { get; set; }
public List<string> Issues { get; set; } = new List<string>();
// Optional weitere Checks
public bool ApiOk { get; set; }
public bool DiskOk { get; set; }
}
}