NadekoBot/NadekoBot.Module.Searches/Common/GoogleSearchResult.cs
2017-09-30 00:46:33 +02:00

17 lines
396 B
C#

namespace NadekoBot.Modules.Searches.Common
{
public struct 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;
}
}
}