SorterRecipePlaceModeTransfer1To1.cs 400 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Aitex.Sorter.Common
  7. {
  8. public enum SorterRecipePlaceModeTransfer1To1
  9. {
  10. [Description("From Bottom")]
  11. FromBottom,
  12. [Description("From Top")]
  13. FromTop,
  14. [Description("Same Slot")]
  15. SameSlot,
  16. }
  17. }