16 lines
261 B
PHP
16 lines
261 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KupShop\ComponentsBundle\Entity;
|
|
|
|
class Thumbnail
|
|
{
|
|
public function __construct(
|
|
public readonly string $id,
|
|
public readonly ?string $title,
|
|
public readonly string $version,
|
|
) {
|
|
}
|
|
}
|