Rabbi_Gerzi/backend/app/Element/CreateElementDto.php

19 lines
356 B
PHP

<?php
namespace App\Element;
use App\Set\Set;
class CreateElementDto
{
public function __construct(
public Set $set,
public string $title,
public string $description,
public string $richText,
public ?string $pdfPath,
public ?string $youtubeUrl,
public ?Element $parentElement,
) {
}
}