using System.ComponentModel;
namespace WMS.Info
{
[Description("APP类型")]
public enum EAppType
{
///
/// 其他
///
[Description("其他")]
Other = 0,
///
/// PC应用
///
[Description("PC应用")]
PC = 1,
///
/// 在线手持应用
///
[Description("在线手持应用")]
OnLineRF = 2,
///
/// 离线手持应用
///
[Description("离线手持应用")]
OffLineRF = 3,
///
/// 触摸应用
///
[Description("触摸应用")]
Touch = 4,
///
/// 显示应用
///
[Description("显示应用")]
TV = 5,
///
/// 接口应用
///
[Description("接口应用")]
Interface = 6,
}
}