mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 10:03:12 -04:00
10 lines
236 B
C#
10 lines
236 B
C#
namespace Cleanuparr.Domain.Entities.HealthCheck;
|
|
|
|
public sealed record HealthCheckResult
|
|
{
|
|
public bool IsHealthy { get; set; }
|
|
|
|
public string? ErrorMessage { get; set; }
|
|
|
|
public TimeSpan ResponseTime { get; set; }
|
|
} |