Files
nadekobot/src/NadekoBot/Modules/Searches/Search/Google/GoogleImageData.cs

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!;
}