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

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,
) {
}
}