We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8245ea4 commit bac9827Copy full SHA for bac9827
1 file changed
README.md
@@ -117,7 +117,18 @@ public enum PluginNamespace
117
```csharp
118
public class SampleGreetingPlugin : IPlugin
119
{
120
- public PluginMetadata Metadata => new("GreetingPlugin", "Returns a greeting message.");
+ public PluginMetadata Metadata => new()
121
+ {
122
+ Id = Guid.Parse("fc58122d-6444-4c5b-ab3d-8cff62283a08"),
123
+ Name = "MyPlugin",
124
+ Description = "This is a test plugin.",
125
+ Version = new PluginVersion(1, 0, 0),
126
+ Namespace = PluginNamespace.Connectors,
127
+ CompanyName = "FlowSynx",
128
+ Authors = new List<string> { "FlowSynx" },
129
+ Copyright = "© FlowSynx. All rights reserved.",
130
+ Tags = new List<string>() { "MyCompany", "TestPlugin" }
131
+ };
132
133
public PluginSpecifications? Specifications { get; set; }
134
0 commit comments