mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
19 lines
522 B
C#
19 lines
522 B
C#
using NadekoBot.Modules.Searches;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace NadekoBot.Services;
|
|
|
|
public sealed class OfficialGoogleSearchResultEntry : ISearchResultEntry
|
|
{
|
|
[JsonPropertyName("title")]
|
|
public string Title { get; init; } = null!;
|
|
|
|
[JsonPropertyName("link")]
|
|
public string Url { get; init; } = null!;
|
|
|
|
[JsonPropertyName("displayLink")]
|
|
public string DisplayUrl { get; init; } = null!;
|
|
|
|
[JsonPropertyName("snippet")]
|
|
public string Description { get; init; } = null!;
|
|
} |