tbf/TestBenchFramework/UiBridge/EmergencyStopEventArgs.cs
2015-04-15 20:32:56 +02:00

26 lines
456 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using System;
namespace TBF.UiBridge
{
public class EmergencyStopEventArgs : EventArgs
{
public enum State
{
Unknown,
Inactive,
Active,
CloseForm,
}
public State EmergencyStopState;
public EmergencyStopEventArgs(State emergencyStopState)
{
this.EmergencyStopState = emergencyStopState;
}
}
}