Starting actors populate

This commit is contained in:
thibaud-leclere
2026-01-15 14:01:45 +01:00
parent be171b45b4
commit dcc47fcb65
5 changed files with 95 additions and 24 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Model\TMDB;
class TMDBActor
{
public function __construct(
public int $id { get => $this->id; },
public string $name { get => $this->name; },
public float $popularity { get => $this->popularity; },
public string $character { get => $this->character; },
) {}
}