Started working on search suggestions

This commit is contained in:
2025-04-18 12:17:18 +02:00
parent 5dec609004
commit 68a4479c2d
7 changed files with 163 additions and 19 deletions

View File

@@ -0,0 +1,11 @@
using HopFrame.Core.Config;
namespace HopFrame.Web.Services;
public interface ISearchSuggestionProvider {
public IEnumerable<string> GenerateSearchSuggestions(TableConfig table, string searchText);
public string CompleteSearchSuggestion(TableConfig table, string searchText, string selectedSuggestion);
}