Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Sorter/Common/SorterRecipePlaceModePack.cs

17 lines
340 B
C#

using System.ComponentModel;
namespace Aitex.Sorter.Common
{
public enum SorterRecipePlaceModePack
{
[Description("From Bottom Insert")]
FromBottomInsert = 0,
[Description("From Bottom Shift")]
FromBottomShift = 1,
[Description("From Top Insert")]
FromTopInsert = 2,
[Description("From Top Shift")]
FromTopShift = 3
}
}