TDoG-Skin/app/Events/UserProfileUpdated.php
2024-08-17 19:13:54 +08:00

18 lines
253 B
PHP
Executable File

<?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;
}
}