using System.Collections.Generic;
namespace VideoGameQuotes.Api.Search {
///
/// Exposes an interface to search for quotes
///
public interface IQuoteSearcher {
///
/// Searches for quote based on the given search query
///
IEnumerable Search(string query);
///
/// (Re)builds the search index
///
/// Set to false to not overwrite the old index with a brand new one.
void BuildIndex(bool replaceOldIndex = true);
}
}