Attainly/backend/app/Element/CreateElementDto.php

15 lines
256 B
PHP

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