Flow.Launcher/Flow.Launcher.Plugin/Interfaces/IContextMenu.cs

9 lines
192 B
C#
Raw Permalink Normal View History

2021-07-07 17:47:20 +00:00
using System.Collections.Generic;
namespace Flow.Launcher.Plugin
{
public interface IContextMenu : IFeatures
{
List<Result> LoadContextMenus(Result selectedResult);
}
}