14 lines
205 B
PHP
14 lines
205 B
PHP
<?php
|
|
|
|
namespace App\Node;
|
|
|
|
use App\Text\Text;
|
|
|
|
class CreateNodeDto
|
|
{
|
|
public function __construct(
|
|
public Text $text,
|
|
public string $title,
|
|
public ?Node $parentNode,
|
|
) {}
|
|
}
|