Files
Mangarr/src/Domain/Shared/Application/Query/GetJobById.php
ext.jeremy.guillot@maxicoffee.domains 19395b4869 feat: activity page
2026-03-11 20:54:55 +01:00

16 lines
265 B
PHP

<?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
) {
}
}