FoupDockState.cs 218 B

12345678910111213141516
  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 FoupDockState
  8. {
  9. Undocked,
  10. Docked,
  11. Unknown,
  12. }
  13. }