using System.Collections.Generic; using System.Text.Json.Serialization; namespace MSearch.SearchProviders.Reddit; internal sealed record RedditSearchData( [property: JsonPropertyName("children")] IReadOnlyCollection<RedditSearchItem> Children );