Files
nadekobot/src/NadekoBot/Modules/Searches/Search/GoogleScrape/PlainSearchResultInfo.cs

7 lines
235 B
C#

namespace NadekoBot.Modules.Searches.GoogleScrape;
public sealed class PlainSearchResultInfo : ISearchResultInformation
{
public string TotalResults { get; init; } = null!;
public string SearchTime { get; init; } = null!;
}