17 lines
390 B
C#
17 lines
390 B
C#
using System;
|
|
|
|
namespace Thermo.Active.CmsConnectGateway.Events
|
|
{
|
|
public class GatewayRebootEventHandlerArgs : EventArgs
|
|
{
|
|
public Boolean errorStatus { get; internal set; }
|
|
public String errorMessage { get; internal set; }
|
|
|
|
public GatewayRebootEventHandlerArgs()
|
|
{
|
|
errorStatus = false;
|
|
errorMessage = "";
|
|
}
|
|
}
|
|
}
|