mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-03-25 10:21:11 -04:00
9 lines
159 B
C#
9 lines
159 B
C#
using LibationSearchEngine;
|
|
|
|
namespace ApplicationServices;
|
|
|
|
public interface ISearchEngine
|
|
{
|
|
SearchResultSet? GetSearchResultSet(string? searchString);
|
|
}
|