using IwbZero.IwbBase; namespace WeEngine.Components { public class ComponentParameter:QueryParameter { public ComponentParameter(string pcParameter, ComponentParameterType peType) : base(pcParameter) { Type = peType; } public override string ToString() { return (Type + ":" + base.ToString()); } public ComponentParameterType Type { get; set; } } public enum ComponentParameterType { Variable, FilterField, File, PrinterSetting, Folder } }