mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 17:09:28 +00:00
11 lines
203 B
C#
11 lines
203 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WinAlfred.Plugin
|
|
{
|
|
public interface IPlugin
|
|
{
|
|
string GetActionName();
|
|
List<Result> Query(Query query);
|
|
void Init();
|
|
}
|
|
} |