. */ namespace SP\Domain\User\Models; use SP\Domain\Common\Models\Model; /** * Class UserPassRecover */ class UserPassRecover extends Model { public const TABLE = 'UserPassRecover'; protected ?int $userId = null; protected ?string $hash = null; protected ?int $date = null; protected ?bool $used = null; public function getUserId(): ?int { return $this->userId; } public function getHash(): ?string { return $this->hash; } public function getDate(): ?int { return $this->date; } public function isUsed(): ?bool { return $this->used; } }