mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
31 lines
553 B
PHP
31 lines
553 B
PHP
<?php
|
|
namespace common\emails\templates;
|
|
|
|
class ForgotPasswordParams {
|
|
|
|
private $username;
|
|
|
|
private $code;
|
|
|
|
private $link;
|
|
|
|
public function __construct(string $username, string $code, string $link) {
|
|
$this->username = $username;
|
|
$this->code = $code;
|
|
$this->link = $link;
|
|
}
|
|
|
|
public function getUsername(): string {
|
|
return $this->username;
|
|
}
|
|
|
|
public function getCode(): string {
|
|
return $this->code;
|
|
}
|
|
|
|
public function getLink(): string {
|
|
return $this->link;
|
|
}
|
|
|
|
}
|