26 lines
456 B
C#
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;
|
|
}
|
|
}
|
|
}
|