mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 23:24:46 +02:00
19 lines
321 B
PHP
19 lines
321 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Events\Auth;
|
|
|
|
use Pterodactyl\Events\Event;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class FailedPasswordReset extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct(public string $ip, public string $email)
|
|
{
|
|
}
|
|
}
|