forked from EllieBotDevs/elliebot
14 lines
379 B
C#
14 lines
379 B
C#
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace EllieBot.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;
|
|||
|
}
|