forked from EllieBotDevs/elliebot
15 lines
No EOL
341 B
C#
15 lines
No EOL
341 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace EllieBot.Modules.Searches;
|
|
|
|
public sealed class SearxSearchAttribute
|
|
{
|
|
[JsonPropertyName("label")]
|
|
public string? Label { get; set; }
|
|
|
|
[JsonPropertyName("value")]
|
|
public string? Value { get; set; }
|
|
|
|
[JsonPropertyName("entity")]
|
|
public string? Entity { get; set; }
|
|
} |