. */ namespace SP\DataModel; use SP\Domain\Account\Adapters\AccountData; /** * Class AccountExtData * * @package SP\DataModel */ class AccountExtData extends AccountData { protected ?string $categoryName = null; protected ?string $clientName = null; protected ?string $userGroupName = null; protected ?string $userName = null; protected ?string $userLogin = null; protected ?string $userEditName = null; protected ?string $userEditLogin = null; public function getUserEditName(): ?string { return $this->userEditName; } public function getUserEditLogin(): ?string { return $this->userEditLogin; } public function getCategoryName(): ?string { return $this->categoryName; } public function getClientName(): ?string { return $this->clientName; } public function getUserGroupName(): ?string { return $this->userGroupName; } public function getUserName(): ?string { return $this->userName; } public function getUserLogin(): ?string { return $this->userLogin; } }