using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PaintDotNet.Data.Param { [Serializable] public class Args { /// /// 参数类型,回头改成枚举 /// 1数组(下拉或单选) /// 2整数数值范围(滑动块) /// 3小数数值范围(滑动块) /// 4正奇数数值范围(滑动块) /// 5输入图像 /// 6输出图像 /// 7抉择 /// private Dtryt type; /// /// 参数的键 /// public string key; /// /// 参数的初始值 /// public object initialValue; /// /// 参数的值 /// public object value; /// /// 参数名称 /// public string name; public Dtryt Type { get { return this.type; } set { this.type = value; } } public string Key { get { return this.key; } set { this.key = value; } } public string Name { get { return this.name; } set { this.name = value; } } public object Value { get { return this.value; } set { this.value = value; } } } }