Configuration branch

This commit is contained in:
2025-10-11 09:44:08 -04:00
parent 0e59b296a3
commit b9a2709fd5
31 changed files with 1367 additions and 1057 deletions
+2 -6
View File
@@ -3,13 +3,8 @@ namespace Endpoint
/// <summary>
/// Status of an endpoint
/// </summary>
/// <remarks>The <see cref="StatusComparer"/> expects these to be in order of best-to-worst descending.</remarks>
public enum Status
{
/// <summary>
/// Service state is unknown - this will occur only before the first poll.
/// </summary>
Unknown,
/// <summary>
/// Service is working
/// </summary>
@@ -25,6 +20,7 @@ namespace Endpoint
/// <summary>
/// Service is available, but returns an error message
/// </summary>
Error
Error,
Unknown
}
}