Flow.Launcher/Flow.Launcher.Plugin/IContextMenu.cs
2021-07-08 01:47:20 +08:00

9 lines
No EOL
192 B
C#

using System.Collections.Generic;
namespace Flow.Launcher.Plugin
{
public interface IContextMenu : IFeatures
{
List<Result> LoadContextMenus(Result selectedResult);
}
}