ComponentParameter.cs 591 B

12345678910111213141516171819202122232425262728
  1. using IwbZero.IwbBase;
  2. namespace WeEngine.Components
  3. {
  4. public class ComponentParameter:QueryParameter
  5. {
  6. public ComponentParameter(string pcParameter, ComponentParameterType peType) : base(pcParameter)
  7. {
  8. Type = peType;
  9. }
  10. public override string ToString()
  11. {
  12. return (Type + ":" + base.ToString());
  13. }
  14. public ComponentParameterType Type { get; set; }
  15. }
  16. public enum ComponentParameterType
  17. {
  18. Variable,
  19. FilterField,
  20. File,
  21. PrinterSetting,
  22. Folder
  23. }
  24. }