add use case and request
This commit is contained in:
parent
5c2b6c9edd
commit
ce56e460ff
2 changed files with 58 additions and 0 deletions
13
app/Node/UseCases/BulkCreateNodesRequest.php
Normal file
13
app/Node/UseCases/BulkCreateNodesRequest.php
Normal 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,
|
||||
) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue