📄
GitHubItem.cs
using System.Text.Json.Serialization; namespace MSearch.SearchProviders.GitHub; internal record GitHubItem( [property: JsonPropertyName("name")] string? Name, [property: JsonPropertyName("description")] string? Description, [property: JsonPropertyName("title")] string? Title, [property: JsonPropertyName("body")] string? Body, [property: JsonPropertyName("html_url")] string Url );