📄 RedditSearchResult.cs
1 2 3 4 5 6 7 8 9 10
using System.Text.Json.Serialization;

namespace MSearch.SearchProviders.Reddit;

internal sealed record RedditSearchResult(
    [property: JsonPropertyName("title")] string Title,
    [property: JsonPropertyName("selftext")] string SelfText,
    [property: JsonPropertyName("permalink")] string Permalink
);