mirror of
https://github.com/elyby/accounts.git
synced 2025-05-31 14:11:46 +05:30
17 lines
313 B
PHP
17 lines
313 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace common\components\Authentication\Entities;
|
|
|
|
final readonly class Credentials {
|
|
|
|
public function __construct(
|
|
public string $login,
|
|
public string $password,
|
|
public ?string $totp = null,
|
|
public bool $rememberMe = false,
|
|
) {
|
|
}
|
|
|
|
}
|