23 lines
396 B
C#
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;
|
|
}
|
|
}
|
|
}
|