Files
nadekobot/src/NadekoBot/Modules/Searches/Search/ISearchResult.cs

8 lines
208 B
C#

namespace NadekoBot.Modules.Searches;
public interface ISearchResult
{
string? Answer { get; }
IReadOnlyCollection<ISearchResultEntry> Entries { get; }
ISearchResultInformation Info { get; }
}