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

17 lines
279 B
PHP

<?php
namespace App\Events;
class UserTryToLogin extends Event
{
public $identification;
public $authType;
public function __construct($identification, $authType)
{
$this->identification = $identification;
$this->authType = $authType;
}
}