using System.Text.Json.Serialization; namespace MSearch.SearchProviders.YouTube; internal sealed record YouTubeSnippet( [property: JsonPropertyName("title")] string Title, [property: JsonPropertyName("description")] string Description );