* @Link https://gitee.com/xmo/MineAdmin */ declare(strict_types = 1); namespace Builder\Event; class UserDelete { public array $ids; public function __construct(array $ids) { $this->ids = $ids; } }