using System.Text.Json.Serialization; namespace MSearch.SearchProviders.YouTube; internal sealed record YouTubeItem( [property: JsonPropertyName("id")] YouTubeId Id, [property: JsonPropertyName("snippet")] YouTubeSnippet Snippet );