add get element use case

This commit is contained in:
Yisroel Baum 2026-05-26 19:59:09 +03:00
parent ca4d2dad3b
commit 46f5e6138e
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
3 changed files with 52 additions and 0 deletions

View file

@ -0,0 +1,10 @@
<?php
namespace App\Element\UseCases\GetElement;
class GetElementRequest
{
public function __construct(public ?int $id)
{
}
}