21 lines
480 B
C#
21 lines
480 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Step.CmsConnectManager.Events
|
|
{
|
|
public class GatewayRebootEventHandlerArgs : EventArgs
|
|
{
|
|
public bool ErrorStatus { get; internal set; }
|
|
public string ErrorMessage { get; internal set; }
|
|
|
|
public GatewayRebootEventHandlerArgs()
|
|
{
|
|
ErrorStatus = false;
|
|
ErrorMessage = "";
|
|
}
|
|
}
|
|
}
|