You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
550 B
C#
24 lines
550 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesnac.Controls.ChemicalWeighing
|
|
{
|
|
/// <summary>管道线的端点朝向</summary>
|
|
public enum HslPipeTurnDirection
|
|
{
|
|
/// <summary>向上</summary>
|
|
Up = 1,
|
|
/// <summary>向下</summary>
|
|
Down = 2,
|
|
/// <summary>向左</summary>
|
|
Left = 3,
|
|
/// <summary>向右</summary>
|
|
Right = 4,
|
|
/// <summary>无效果</summary>
|
|
None = 5,
|
|
}
|
|
}
|