blessing-skin-server/app/Events/UserProfileUpdated.php
2020-06-24 15:25:36 +08:00

18 lines
253 B
PHP

<?php
namespace App\Events;
use App\Models\User;
class UserProfileUpdated extends Event
{
public $type;
public $user;
public function __construct($type, User $user)
{
$this->type = $type;
$this->user = $user;
}
}