mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-21 04:28:40 +00:00
16 lines
259 B
PHP
Executable File
16 lines
259 B
PHP
Executable File
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Models;
|
|
|
|
class Account extends \phpOMS\Account\Account
|
|
{
|
|
public int $tries = 0;
|
|
|
|
public string $tempPassword = '';
|
|
|
|
public array $parents = [];
|
|
|
|
public ?\DateTimeImmutable $tempPasswordLimit = null;
|
|
}
|