Skip to content

Commit bac9827

Browse files
committed
Update README
#10
1 parent 8245ea4 commit bac9827

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,18 @@ public enum PluginNamespace
117117
```csharp
118118
public class SampleGreetingPlugin : IPlugin
119119
{
120-
public PluginMetadata Metadata => new("GreetingPlugin", "Returns a greeting message.");
120+
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+
};
121132

122133
public PluginSpecifications? Specifications { get; set; }
123134

0 commit comments

Comments
 (0)