using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWareModel
{
///
/// 堆叠顺序的排序方式
///
public enum StackSequenceSortRule
{
///
/// 升序
///
Ascending = 1,
///
/// 降序
///
Descending = 2
}
}