tbf/TestBenchFramework/UiBridge/EmergencyStopEventArgs.cs
2014-07-28 09:56:40 +02:00

23 lines
396 B
C#

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