using System.Collections.Generic; namespace Wox.Plugin { public interface IPlugin { List Query(Query query); void Init(PluginInitContext context); /// /// Used when saving Plug-in settings /// string PluginId { get; } } }