Rabbi_Gerzi/backend/app/Element/UseCases/CreateElement/CreateElementRequest.php
2026-05-27 21:14:24 +03:00

18 lines
407 B
PHP

<?php
namespace App\Element\UseCases\CreateElement;
class CreateElementRequest
{
public function __construct(
public ?int $setId,
public ?string $title,
public ?string $description,
public ?string $iconImageUrl,
public ?string $richText,
public ?string $pdfPath,
public ?string $youtubeUrl,
public ?int $parentElementId,
) {
}
}