Added none source to share list

This commit is contained in:
Heath Volmer
2017-09-28 13:53:16 -06:00
parent b57582feea
commit 0f41f3ce50
8 changed files with 95 additions and 130 deletions

View File

@@ -26,11 +26,14 @@ namespace PepperDash.Essentials.Core
}
/// <summary>
///
/// StatusUnknown = 0, IsOk = 1, InWarning = 2, InError = 3
/// </summary>
public enum MonitorStatus
{
IsOk, InWarning, InError, StatusUnknown
StatusUnknown = 0,
IsOk = 1,
InWarning = 2,
InError = 3
}
public class MonitorStatusChangeEventArgs : EventArgs