/*-------------------------------------------------------------------------
* 功能描述:StartType
* 作者:xulisong
* 创建时间: 2019/7/31 10:32:53
* 版本号:v1.0
* -------------------------------------------------------------------------*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RevitVersion
{
///
/// 启动类型
///
public enum StartType
{
///
/// 启动
///
[Description("启动")]
Start,
///
/// 启动(常驻)
///
[Description("启动(常驻)")]
StartAuto,
///
/// 附加
///
[Description("附加")]
Attach,
///
/// 取消
///
[Description("取消")]
Cancel
}
}