Rabbi_Gerzi/backend/app/Element/UseCases/UpdateElement/UpdateElementRequest.php
2026-05-28 20:08:36 +03:00

17 lines
366 B
PHP

<?php
namespace App\Element\UseCases\UpdateElement;
class UpdateElementRequest
{
public function __construct(
public ?int $id,
public ?string $title,
public ?string $description,
public ?string $iconImageUrl,
public ?string $richText,
public ?string $pdfPath,
public ?string $youtubeUrl,
) {
}
}