mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
14 lines
261 B
C#
14 lines
261 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Wox.Plugin;
|
|
|
|
namespace Wox.PluginLoader
|
|
{
|
|
public interface IPluginLoader
|
|
{
|
|
List<PluginPair> LoadPlugin(List<PluginMetadata> pluginMetadatas);
|
|
}
|
|
}
|