feat: activity page
This commit is contained in:
parent
f418b36167
commit
19395b4869
15
src/Domain/Shared/Application/Query/GetJobById.php
Normal file
15
src/Domain/Shared/Application/Query/GetJobById.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Domain\Shared\Application\Query;
|
||||
|
||||
use App\Domain\Shared\Domain\Contract\QueryInterface;
|
||||
|
||||
readonly class GetJobById implements QueryInterface
|
||||
{
|
||||
public function __construct(
|
||||
public string $id
|
||||
) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user