WeeXnesSuite/ExamplePlugin/ExamplePlugin.cs
2025-04-08 13:26:38 +02:00

21 lines
No EOL
473 B
C#

using System;
using WXPlugin.PluginCore;
namespace ExamplePlugin
{
public class ExamplePlugin : IPluginBase
{
public String Name { get; set; } = "Example Plugin";
public String Description { get; set; } = "This is an example plugin.";
public void Execute()
{
throw new NotImplementedException();
}
public void Initialize()
{
throw new NotImplementedException();
}
}
}