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