mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
91e9d7431a
1. #486 2. rename
10 lines
245 B
C#
10 lines
245 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Wox.Plugin.WebSearch.SuggestionSources
|
|
{
|
|
public abstract class SuggestionSource
|
|
{
|
|
public abstract Task<List<string>> Suggestions(string query);
|
|
}
|
|
} |