mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-03 00:24:01 +01:00
14 lines
166 B
PHP
14 lines
166 B
PHP
<?php
|
|
|
|
namespace app\modules\server\events;
|
|
|
|
use app\models\User;
|
|
|
|
class UserAuthEvent extends ConnectionEvent
|
|
{
|
|
/**
|
|
* @var User
|
|
*/
|
|
public $user;
|
|
}
|