mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-02-15 08:33:45 -05:00
9 lines
159 B
C#
9 lines
159 B
C#
using LibationSearchEngine;
|
|
|
|
namespace ApplicationServices;
|
|
|
|
public interface ISearchEngine
|
|
{
|
|
SearchResultSet? GetSearchResultSet(string? searchString);
|
|
}
|