. */ namespace SP\Domain\Account\Models; /** * Class FileExtData */ class FileExtData extends File { protected ?string $clientName = null; protected ?string $accountName = null; public function getClientName(): ?string { return $this->clientName; } public function getAccountName(): ?string { return $this->accountName; } }