Created
September 10, 2019 14:44
-
-
Save ntakouris/34659386d9a50c15c6403a27224f554e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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