node entity

This commit is contained in:
Yisroel Baum 2026-02-19 21:25:26 +02:00
parent dce04278ea
commit 3ddca5687b
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

15
app/Node/Node.php Normal file
View file

@ -0,0 +1,15 @@
<?php
namespace App\Node;
class Node
{
public function __construct(
private string $title,
) {}
public function getTitle(): string
{
return $this->title;
}
}