Removed module projects because it can't work like that atm. Commented out package commands.
This commit is contained in:
16
NadekoBot.Core/Modules/Searches/Common/GoogleSearchResult.cs
Normal file
16
NadekoBot.Core/Modules/Searches/Common/GoogleSearchResult.cs
Normal file
@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user