using System.Collections.Generic; namespace WinAlfred.Plugin { public interface IPlugin { string GetActionName(); List Query(Query query); void Init(); } }