internal ParameterRepresentation(string name, Type type, bool optional, string description, bool list) : base(RepresentationType.PluginParameter) { this.Name = name; this.Optional = optional; this.List = list; this.ParamType = RepresentationType.Extended(type); this.Description = description; }
public ExtensionPointRepresentation(string name, Type extended, string description) : base(RepresentationType.PluginDescription) { this._name = name; this._description = description; this._extended = RepresentationType.Extended(extended); }