dto for the create method of node

This commit is contained in:
Yisroel Baum 2026-02-19 21:26:01 +02:00
parent c8f5f1343e
commit e55133ceac
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -0,0 +1,10 @@
<?php
namespace App\Node;
class CreateNodeDto
{
public function __construct(
public string $title,
) {}
}