Rabbi_Gerzi/backend/app/Element/CreateElementDto.php

17 lines
287 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 ?Element $parentElement,
) {
}
}