Rabbi_Gerzi/backend/app/Element/CreateElementDto.php
2026-05-25 20:24:59 +03:00

15 lines
218 B
PHP

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