using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Team.FFFeederService.Enums
{
///
/// Feeder振动动作
///
public enum FeederAction
{
///
/// 左下
///
LeftAndBottom,
///
/// 左
///
Left,
///
/// 左上
///
LeftAndTop,
///
/// 散开
///
Flip,
///
/// 上
///
Top,
///
/// 下
///
Bottom,
///
/// 右下
///
RightAndBottom,
///
/// 右
///
Right,
///
/// 右上
///
RightAndTop,
///
/// 垂直方向聚集
///
VerticalAlignment,
///
/// 水平方向聚集
///
HorizontalAlignment
}
}