using System.Collections.Generic; using System.Text.Json.Serialization; namespace MSearch.SearchProviders.GitHub; internal sealed record GithubResponse([property: JsonPropertyName("items")] IReadOnlyCollection<GitHubItem> Items);