mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
7 lines
235 B
C#
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!;
|
|
} |