This commit is contained in:
qianlifeng
2013-12-19 23:51:20 +08:00
parent a540165280
commit fd1ee23adc
26 changed files with 1128 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections.Generic;
namespace WinAlfred.Plugin
{
public interface IPlugin
{
string GetActionName();
List<Result> Query(Query query);
void Init();
}
}