using Pilz.Plugins.Advanced; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SamplePlugin { internal class SampleFunction : PluginFunction, IPluginFeatureProvider { public static SampleFunction Instance { get; } = new(); public SampleFunction() : base() { } protected override object? ExecuteFunction(PluginFunctionParameter? @params) { throw new NotImplementedException(); } } }