public PluginInformation(PluginAttribute pluginAtt, string path, string pluginID, string typeFullName) {
     this.Author = pluginAtt.Author;
     this.Name = pluginAtt.Name;
     this.Version = pluginAtt.Version;
     this.Description = pluginAtt.Description;
     this.PluginType = pluginAtt.PluginType;
     this.Path = path;
     this.PluginID = pluginID;
     this.TypeFullName = typeFullName;
 }
 public PluginInformation(PluginAttribute pluginAtt, string path, string pluginID, string typeFullName)
 {
     this.Author       = pluginAtt.Author;
     this.Name         = pluginAtt.Name;
     this.Version      = pluginAtt.Version;
     this.Description  = pluginAtt.Description;
     this.PluginType   = pluginAtt.PluginType;
     this.Path         = path;
     this.PluginID     = pluginID;
     this.TypeFullName = typeFullName;
 }