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