mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02: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);
|
|
}
|
|
}
|