using System.Collections.Generic; using System.Text.Json.Serialization; namespace MSearch.SearchProviders.TheMovieDb; internal sealed record TheMovieDbResponse( [property: JsonPropertyName("results")] IReadOnlyCollection<TheMovieDbResult> Results );