mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
9 lines
179 B
C#
9 lines
179 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Wox.Plugin.Features
|
|
{
|
|
public interface IContextMenu
|
|
{
|
|
List<Result> LoadContextMenus(Result selectedResult);
|
|
}
|
|
} |