using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
/// 属性输入格式
///
public enum ePropertyInputFormat
{
///
/// 输入框
///
Simple = 0,
///
/// 下拉单选
///
Choice = 1,
///
/// 下拉单选并允许输入
///
ChoiceAndSimple = 2,
///
/// 下拉多选
///
MultiChoice = 3,
///
/// 复杂输入
///
Complex = 99,
}
}