mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
15 lines
344 B
C#
15 lines
344 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Wox.Plugin.WebSearch.SuggestionSources
|
|
{
|
|
public interface ISuggestionSource
|
|
{
|
|
List<string> GetSuggestions(string query);
|
|
}
|
|
|
|
public abstract class AbstractSuggestionSource : ISuggestionSource
|
|
{
|
|
public abstract List<string> GetSuggestions(string query);
|
|
}
|
|
}
|