mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
17 lines
402 B
C#
17 lines
402 B
C#
namespace NadekoBot.Modules.Searches.Common
|
|
{
|
|
public sealed class GoogleSearchResult
|
|
{
|
|
public string Title { get; }
|
|
public string Link { get; }
|
|
public string Text { get; }
|
|
|
|
public GoogleSearchResult(string title, string link, string text)
|
|
{
|
|
this.Title = title;
|
|
this.Link = link;
|
|
this.Text = text;
|
|
}
|
|
}
|
|
}
|