Class OpenPluginInfo
An attribute containing information about a plugin. It can be applied on any classes implementing the OpenPlugin OpenPlugin class.
Inheritance
System.Object
OpenPluginInfo
Namespace: OpenAPI.Plugins
Assembly: OpenAPI.dll
Syntax
public sealed class OpenPluginInfo : Attribute
Properties
| Improve this Doc View SourceAuthor
Uniqely identifies who developed this plugin
Declaration
public string Author { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Authors
Allows you to list multiple authors, if it is a collaborative project. Author
Declaration
public string[] Authors { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
Description
A human friendly description of the functionality this plugin provides
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
The name of the plugin
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Version
The version of the plugin
Declaration
public string Version { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Website
The plugin's or author's website.
Declaration
public string Website { get; set; }
Property Value
Type | Description |
---|---|
System.String |