mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
8 lines
318 B
C#
8 lines
318 B
C#
namespace NadekoBot.Modules.Searches.GoogleScrape;
|
|
|
|
public class PlainGoogleScrapeSearchResult : ISearchResult
|
|
{
|
|
public required string? Answer { get; init; }
|
|
public required IReadOnlyCollection<ISearchResultEntry> Entries { get; init; }
|
|
public required ISearchResultInformation Info { get; init; }
|
|
} |