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