mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
1. #486 2. fix #778 #763 #742 3. MVVM refactoring 4. remove IMultipleActionKeywords interface, use PluginManager directly
11 lines
268 B
C#
11 lines
268 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Wox.Plugin.WebSearch.SuggestionSources
|
|
{
|
|
//todo rename file
|
|
public abstract class SuggestionSource
|
|
{
|
|
public abstract Task<List<string>> Suggestions(string query);
|
|
}
|
|
} |