10 lines
124 B
PHP
10 lines
124 B
PHP
<?php
|
|
|
|
namespace App\Node;
|
|
|
|
class CreateNodeDto
|
|
{
|
|
public function __construct(
|
|
public string $title,
|
|
) {}
|
|
}
|