1
0
mirror of https://github.com/elyby/accounts.git synced 2025-04-01 08:46:28 +05:30

18 lines
324 B
PHP

<?php
declare(strict_types=1);
namespace common\components\Authentication\Entities;
use common\models\Account;
use common\models\AccountSession;
final readonly class AuthenticationResult {
public function __construct(
public Account $account,
public ?AccountSession $session = null,
) {
}
}