mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
14 lines
380 B
C#
14 lines
380 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace NadekoBot.Modules.Searches;
|
|
|
|
public sealed class SearxImageSearchResultEntry : IImageSearchResultEntry
|
|
{
|
|
public string Link
|
|
=> ImageSource.StartsWith("//")
|
|
? "https:" + ImageSource
|
|
: ImageSource;
|
|
|
|
[JsonPropertyName("img_src")]
|
|
public string ImageSource { get; set; } = string.Empty;
|
|
} |