mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-02-17 14:49:27 +08:00
16 lines
211 B
PHP
16 lines
211 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Services\Plugin;
|
|
|
|
class PluginWasDeleted extends Event
|
|
{
|
|
public $plugin;
|
|
|
|
public function __construct(Plugin $plugin)
|
|
{
|
|
$this->plugin = $plugin;
|
|
}
|
|
}
|