Sic04/FrameworkLocal/RTEquipmentLibrary/HardwareUnits/LoadPorts/LoadPortType.cs

26 lines
463 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.LoadPorts
{
public enum EnumLoadPortType
{
Undefined,
//default open stage, with out door
OpenStage,
OpenStageWithDoor,
//default load port, with map
LoadPort,
LoadPortNoMap,
OpenStageWithWaferSize,
}
}