TDoG-Skin/app/Events/UserTryToLogin.php

17 lines
279 B
PHP
Raw Normal View History

2024-08-17 18:43:48 +08:00
<?php
namespace App\Events;
class UserTryToLogin extends Event
{
public $identification;
public $authType;
public function __construct($identification, $authType)
{
$this->identification = $identification;
$this->authType = $authType;
}
}