using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Controls.ChemicalWeighing
{
/// 皮带链的样式,选择水平还是下坡,还是上坡
public enum HslConveyerStyle
{
/// 水平
Horizontal = 1,
/// 下坡
Downslope = 2,
/// 上坡
Upslope = 3,
}
}