Skip to content

Instantly share code, notes, and snippets.

@merken
Created October 16, 2019 07:05
Show Gist options
  • Save merken/3e1183b82104abe5b6a1c79887d86c39 to your computer and use it in GitHub Desktop.
Save merken/3e1183b82104abe5b6a1c79887d86c39 to your computer and use it in GitHub Desktop.
HelloWorldPlugin.cs
using System;
using Contract;
using Prise.Infrastructure;
namespace HelloWorldPlugin
{
[Plugin(PluginType = typeof(IHelloWorldPlugin))]
public class HelloWorldPlugin : IHelloWorldPlugin
{
public string SayHello(string input)
{
return $"Hello {input}";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment