mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
13 lines
347 B
C#
13 lines
347 B
C#
using NadekoBot.Modules.Searches;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace NadekoBot.Services;
|
|
|
|
public sealed class GoogleImageResultEntry : IImageSearchResultEntry
|
|
{
|
|
[JsonPropertyName("link")]
|
|
public string Link { get; init; } = null!;
|
|
|
|
[JsonPropertyName("image")]
|
|
public GoogleImageData Image { get; init; } = null!;
|
|
} |