mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +08:00
15 lines
333 B
C#
15 lines
333 B
C#
namespace Wox.Plugin
|
|
{
|
|
public class PluginInitContext
|
|
{
|
|
public PluginMetadata CurrentPluginMetadata { get; internal set; }
|
|
|
|
/// <summary>
|
|
/// Public APIs for plugin invocation
|
|
/// </summary>
|
|
public IPublicAPI API { get; set; }
|
|
|
|
public IHttpProxy Proxy { get; set; }
|
|
}
|
|
}
|