16 lines
311 B
PHP
16 lines
311 B
PHP
<?php
|
|
|
|
namespace App\Element;
|
|
|
|
class UpdateElementDto
|
|
{
|
|
public function __construct(
|
|
public string $title,
|
|
public string $description,
|
|
public ?string $iconImageUrl,
|
|
public string $richText,
|
|
public ?string $pdfPath,
|
|
public ?string $youtubeUrl,
|
|
) {
|
|
}
|
|
}
|