Files
PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Indexer/Interface/ISearch.cs

11 lines
238 B
C#
Raw Normal View History

using Microsoft.Plugin.Indexer.SearchHelper;
using System.Collections.Generic;
namespace Microsoft.Plugin.Indexer
{
public interface ISearch
{
List<OleDBResult> Query(string connectionString, string sqlQuery);
}
}