Mercurial > servermonitor
diff ServerMonitor/Objects/Checks/Check.cs @ 39:7645122aa7a9
Get it working under Mono
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Tue, 09 Jun 2020 20:59:00 -0400 |
parents | 7626b099aefd |
children |
line wrap: on
line diff
--- a/ServerMonitor/Objects/Checks/Check.cs Sun Sep 15 21:01:14 2019 -0400 +++ b/ServerMonitor/Objects/Checks/Check.cs Tue Jun 09 20:59:00 2020 -0400 @@ -15,12 +15,12 @@ /// </remarks> public enum CheckStatus { - Success, - Information, - Warning, - Error, - Running, - Disabled, + Success = 0, + Information = 1, + Warning = 2, + Error = 3, + Running = 4, + Disabled = 5, } /// <summary>Base class for checks that run against a server and return a result status.</summary>