movie-night-api/app/Data/MovieSearchResult.php

15 lines
254 B
PHP
Raw Normal View History

2026-02-18 00:15:02 -06:00
<?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,
) {}
}