Attainly/backend/app/Element/CreateElementDto.php

14 lines
239 B
PHP

<?php
namespace App\Element;
use App\Set\SetLevel;
final readonly class CreateElementDto
{
public function __construct(
public string $name,
public SetLevel $level,
public ?Element $parentElement,
) {}
}