FoupDoorState.cs 227 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Sorter.Common
  6. {
  7. public enum FoupDoorState
  8. {
  9. Open,
  10. Close,
  11. Unknown,
  12. }
  13. }