mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +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; }
|
|
}
|
|
}
|