21 lines
491 B
C#
21 lines
491 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Termo.Active.CmsConnectGateway.Events
|
|
{
|
|
public class GatewayRebootEventHandlerArgs : EventArgs
|
|
{
|
|
public Boolean errorStatus { get; internal set; }
|
|
public String errorMessage { get; internal set; }
|
|
|
|
public GatewayRebootEventHandlerArgs()
|
|
{
|
|
errorStatus = false;
|
|
errorMessage = "";
|
|
}
|
|
}
|
|
}
|