PowerToys/WinAlfred.Plugin/IPlugin.cs

10 lines
171 B
C#
Raw Normal View History

2013-12-19 15:51:20 +00:00
using System.Collections.Generic;
namespace WinAlfred.Plugin
{
public interface IPlugin
{
List<Result> Query(Query query);
void Init();
}
}