using System.Collections.Generic; namespace Flow.Launcher.Plugin { /// /// Adds support for presenting additional options for a given from a context menu. /// public interface IContextMenu : IFeatures { /// /// Load context menu items for the given result. /// /// /// The for which the user has activated the context menu. /// List LoadContextMenus(Result selectedResult); } }