add use case and request

This commit is contained in:
Yisroel Baum 2026-04-18 23:04:56 +03:00
parent 5c2b6c9edd
commit ce56e460ff
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
2 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<?php
namespace App\Node\UseCases;
class BulkCreateNodesRequest
{
public function __construct(
public int $textId,
public int $parentNodeId,
public string $titlePrefix,
public int $count,
) {}
}