Files
nnterp-react-admin/app/Events/DestroyHelpdeskCategory.php
2026-03-13 20:49:46 +08:00

15 lines
252 B
PHP

<?php
namespace App\Events;
use App\Models\HelpdeskCategory;
use Illuminate\Foundation\Events\Dispatchable;
class DestroyHelpdeskCategory
{
use Dispatchable;
public function __construct(
public HelpdeskCategory $category,
) {}
}