using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Models
{
///
/// 状态触发枚举
///
public enum RunStateTrig
{
///
/// 等待 触发
///
WaitTrig = 1,
///
/// 报警 触发
///
AlarmTrig = 2,
///
/// 开始 触发
///
StartTrig = 3,
///
/// 结束 触发
///
EndTrig = 4,
///
/// 暂停 触发
///
PauseTrig = 5,
///
/// 复位 触发
///
ResetTrig = 6,
}
///
/// 状态枚举
///
public enum RunState
{
///
/// 等待中
///
Wait = 1,
///
/// 报警中
///
Alarm = 2,
///
/// 运行中
///
Run = 3,
///
/// 停止中
///
Stop = 4,
///
/// 暂停中
///
Pause = 5,
}
}