mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
12 lines
301 B
C#
12 lines
301 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace NadekoBot.Services;
|
|
|
|
public sealed class GoogleImageData
|
|
{
|
|
[JsonPropertyName("contextLink")]
|
|
public string ContextLink { get; init; } = null!;
|
|
|
|
[JsonPropertyName("thumbnailLink")]
|
|
public string ThumbnailLink { get; init; } = null!;
|
|
} |