mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
8 lines
208 B
C#
8 lines
208 B
C#
namespace NadekoBot.Modules.Searches;
|
|
|
|
public interface ISearchResult
|
|
{
|
|
string? Answer { get; }
|
|
IReadOnlyCollection<ISearchResultEntry> Entries { get; }
|
|
ISearchResultInformation Info { get; }
|
|
} |