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