TaoLer/app/event/UserLogin.php
2020-11-29 17:27:47 +08:00

17 lines
249 B
PHP

<?php
declare (strict_types = 1);
namespace app\event;
//use app\common\model\User;
class UserLogin
{
public $name;
public $ip;
public function __construct($name,$ip)
{
$this->name = $name;
$this->ip = $ip;
}
}