18 lines
407 B
PHP
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,
|
|
) {
|
|
}
|
|
}
|