17 lines
431 B
C#
17 lines
431 B
C#
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; }
|
|
}
|
|
}
|