Files
cms_thermo_active/Thermo.Active.CmsConnectGateway/Events/GatewayRebootEventHandlerArgs.cs
T
2020-06-19 19:28:07 +02:00

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