mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
13 lines
269 B
C#
13 lines
269 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Wox.Plugin {
|
|
public interface IPlugin {
|
|
List<Result> Query(Query query);
|
|
void Init(PluginInitContext context);
|
|
|
|
/// <summary>
|
|
/// Used when saving Plug-in settings
|
|
/// </summary>
|
|
string PluginId { get; }
|
|
}
|
|
} |