diff ServerMonitor/Objects/Server.cs @ 39:7645122aa7a9

Get it working under Mono
author Brad Greco <brad@bgreco.net>
date Tue, 09 Jun 2020 20:59:00 -0400
parents b5502ce8cb1f
children
line wrap: on
line diff
--- a/ServerMonitor/Objects/Server.cs	Sun Sep 15 21:01:14 2019 -0400
+++ b/ServerMonitor/Objects/Server.cs	Tue Jun 09 20:59:00 2020 -0400
@@ -252,13 +252,13 @@
     public enum KeyStatus
     {
         /// <summary>The private key file is closed for an unspecified reason.</summary>
-        Closed,
+        Closed = 0,
         /// <summary>The private key file is accessible and open.</summary>
-        Open,
+        Open = 1,
         /// <summary>The private key file is not accessible (missing, access denied, etc).</summary>
-        NotAccessible,
+        NotAccessible = 2,
         /// <summary>The private key file is encrypted and the user has not entered the password yet.</summary>
-        NeedPassword,
+        NeedPassword = 3,
     }
 
 }