add child element ordering
This commit is contained in:
parent
7323925319
commit
62dc119b11
12 changed files with 554 additions and 11 deletions
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace App\Element\UseCases\ReorderChildElements;
|
||||
|
||||
class ReorderChildElementsRequest
|
||||
{
|
||||
/**
|
||||
* @param int[]|null $childElementIds
|
||||
*/
|
||||
public function __construct(
|
||||
public ?int $parentElementId,
|
||||
public ?array $childElementIds,
|
||||
) {
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue