13 lines
369 B
C#
13 lines
369 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace OpenQuery.Models;
|
|
|
|
public record SearxngRoot(
|
|
[property: JsonPropertyName("results")] List<SearxngResult> Results
|
|
);
|
|
|
|
public record SearxngResult(
|
|
[property: JsonPropertyName("title")] string Title,
|
|
[property: JsonPropertyName("url")] string Url,
|
|
[property: JsonPropertyName("content")] string Content
|
|
); |