17 lines
396 B
C#
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|