elliebot/src/EllieBot/Modules/Searches/_common/GoogleSearchResult.cs
2024-06-18 23:55:36 +12:00

16 lines
No EOL
350 B
C#

#nullable disable
namespace EllieBot.Modules.Searches.Common;
public sealed class GoogleSearchResult
{
public string Title { get; }
public string Link { get; }
public string Text { get; }
public GoogleSearchResult(string title, string link, string text)
{
Title = title;
Link = link;
Text = text;
}
}