using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Serein.Library { /// /// 参数值输入类型 /// public enum ParameterValueInputType { /// /// 参数值输入类型 - 输入 /// Input, /// /// 参数值输入类型 - 选择器(枚举类型) /// Select, } }