. */ namespace SP\DataModel; use SP\Domain\Account\Models\PublicLink; /** * Class PublicLinkListData * * @package SP\DataModel */ class PublicLinkList extends PublicLink { protected ?string $userName = null; protected ?string $userLogin = null; protected ?string $accountName = null; public function getName(): ?string { return $this->accountName; } public function getUserLogin(): ?string { return $this->userLogin; } public function getAccountName(): ?string { return $this->accountName; } }