NadekoBot/NadekoBot.Module.Searches/Common/GoogleSearchResult.cs

17 lines
396 B
C#
Raw Normal View History

2017-07-17 19:42:36 +00:00
namespace NadekoBot.Modules.Searches.Common
2016-12-25 05:11:58 +00:00
{
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;
}
}
}