/// <summary>
 /// Initializes a new instance of the attribute.
 /// </summary>
 /// <param name="T">Value from the plugin types enumeration.</param>
 public pluginTypeAttribute(pluginType T)
 {
     _type = T;
 }
Ejemplo n.º 2
0
 //Constructors
 public PluginInfo(string name, string version, pluginType type)
 {
     _name = name;
     _version = version;
     _type = type;
 }