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 Issues { get; set; } = new List(); // Optional weitere Checks public bool ApiOk { get; set; } public bool DiskOk { get; set; } } }