movie-night-api/app/Data/MovieSearchResult.php
2026-02-18 00:15:02 -06:00

14 lines
254 B
PHP

<?php
namespace App\Data;
readonly class MovieSearchResult
{
public function __construct(
public string $title,
public int $year,
public string $imdbId,
public string $type,
public string $poster,
) {}
}