Files
activestep/Step.CmsConnectManager/Events/GatewayRebootEventHandlerArgs.cs
2020-09-12 16:11:43 +02:00

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 = "";
}
}
}