📄
RedditSearchResult.cs
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 );