namespace Endpoint
{
///
/// Status of an endpoint
///
public enum Status
{
///
/// Service is working
///
Up,
///
/// Service can be resolved, but does not respond
///
Timeout,
///
/// Service can not be resolved
///
Unreachable,
///
/// Service is available, but returns an error message
///
Error,
Unknown
}
}