using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Wox.Plugin; namespace HelloWorldCSharp { class Main : IPlugin { public List Query(Query query) { var result = new Result { Title = "Hello Word from CSharp", SubTitle = $"Query: {query.Search}", IcoPath = "app.png" }; return new List {result}; } public void Init(PluginInitContext context) { } } }