Files
cms_thermo_active/Thermo.Active.CmsConnectGateway/Events/GatewayRebootEventHandlerArgs.cs
T
2020-04-09 13:15:01 +02:00

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