using System.ComponentModel;
namespace IBox.WinFrmUI
{
///
/// 来源类型
///
public enum eSourceType
{
///
/// 对接
///
[Description("对接")]
Docking = 0,
///
/// 分析
///
[Description("分析")]
Analyse = 1,
///
/// 录入
///
[Description("录入")]
Input = 2,
///
/// 定制
///
[Description("定制")]
Custom = 3,
}
}