Sic.Framework/MECF.Framework.RT.Equipment.../PmDevices/DicMode.cs

33 lines
521 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aitex.Core.RT.Device.PmDevices
{
public class DicMode
{
public enum FlowMode
{
Purge,
Vent,
Run,
Close,
}
public enum ArH2Switch
{
Ar,
H2,
}
public enum HeaterControlMode
{
Power,
Pyro,
Hold
}
}
}