Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created September 10, 2019 14:44
Show Gist options
  • Save ntakouris/34659386d9a50c15c6403a27224f554e to your computer and use it in GitHub Desktop.
Save ntakouris/34659386d9a50c15c6403a27224f554e to your computer and use it in GitHub Desktop.
public class HealthCheckResponse
{
public string Status { get; set; }
public IEnumerable<HealthCheck> Checks { get; set; }
public TimeSpan Duration { get; set; } // Duration that the checks took to complete
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment