12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CyberX8_Core
- {
- public class ProcessCell
- {
-
-
-
- public string CellName { get; set; }
-
-
-
- public ProcessCellStatus CellStatus { get; set; }
-
-
-
- public bool HasWaferHolder { get; set; }
-
-
-
- public ProcessCellType CellType { get; set; }
- }
- public enum ProcessCellStatus
- {
-
-
-
- [Description("Disabled")]
- Disabled=0,
-
-
-
- [Description("Idle")]
- Idle=1,
-
-
-
- [Description("Processing")]
- Processing=2
- }
- public enum ProcessCellType
- {
-
-
-
- [Description("Metal")]
- Melta=0,
-
-
-
- [Description("Rinse")]
- Rinse=1,
-
-
-
- [Description("Dryer")]
- Dryer=2,
-
-
-
- [Description("Prewet")]
- Prewet=3
- }
- }
|