using System; using System.Collections.Generic; using System.Windows; namespace Flow.Launcher.Plugin.WindowsSettings.Helper { /// /// Helper class to easier work with context menu entries /// internal static class ContextMenuHelper { /// /// Return a list with all context menu entries for the given /// Symbols taken from /// /// The result for the context menu entires /// The name of the this assembly /// A list with context menu entries internal static List GetContextMenu(in Result result, in string assemblyName) { return new List(0); } } }