📄 GithubResponse.cs
1 2 3 4 5 6 7
using System.Collections.Generic;
using System.Text.Json.Serialization;

namespace MSearch.SearchProviders.GitHub;

internal sealed record GithubResponse([property: JsonPropertyName("items")] IReadOnlyCollection<GitHubItem> Items);