mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
9a2ffc1d7c
Fix issues with push results
19 lines
446 B
C#
19 lines
446 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using System.Text;
|
|
|
|
namespace Wox.Plugin.System.SuggestionSources
|
|
{
|
|
public interface ISuggestionSource
|
|
{
|
|
List<string> GetSuggestions(string query);
|
|
}
|
|
|
|
public abstract class AbstractSuggestionSource : ISuggestionSource
|
|
{
|
|
public abstract List<string> GetSuggestions(string query);
|
|
}
|
|
}
|