SorterRecipePlaceModePack.cs 499 B

12345678910111213141516171819202122232425
  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 SorterRecipePlaceModePack
  9. {
  10. [Description("From Bottom Insert")]
  11. FromBottomInsert,
  12. [Description("From Bottom Shift")]
  13. FromBottomShift,
  14. [Description("From Top Insert")]
  15. FromTopInsert,
  16. [Description("From Top Shift")]
  17. FromTopShift,
  18. }
  19. }