FoupDoorState.cs 342 B

1234567891011121314151617181920212223
  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. public enum FoupDoorPostionEnum
  14. {
  15. Up = 0,
  16. Down,
  17. MapStart,
  18. MapEnd,
  19. Unknown,
  20. }
  21. }