using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model.Bimface
{
///
/// 面板方向
///
public enum ePanelDirection
{
///
/// 上
///
Top = 1,
///
/// 下
///
Bottom = 2,
///
/// 左
///
Left = 3,
///
/// 右
///
Right = 4
}
}