using System.Collections.Generic; using System.Text.Json.Serialization; namespace MSearch.SearchProviders.HackerNews; internal sealed record HackerNewsSearchResponse( [property: JsonPropertyName("hits")] IReadOnlyCollection<HackerNewsHit> Hits );