mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-02-20 07:46:34 -05: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; }
|
|
} |