NadekoBot/NadekoBot.Core/Modules/Searches/Common/GoogleSearchResult.cs

17 lines
396 B
C#
Raw Normal View History

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;
}
}
}