namespace NadekoBot.Modules.Searches.GoogleScrape; public class PlainGoogleScrapeSearchResult : ISearchResult { public string? Answer { get; init; } = null!; public IReadOnlyCollection Entries { get; init; } = null!; public ISearchResultInformation Info { get; init; } = null!; }