Rabbi_Gerzi/backend/app/Element/CreateElementDto.php
2026-05-24 22:32:46 +03:00

14 lines
213 B
PHP

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