mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
20 lines
420 B
C#
20 lines
420 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
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; }
|
|
}
|
|
}
|