. */ namespace SP\Domain\Account\Adapters; use SP\Domain\Common\Adapters\DataModelInterface; use SP\Domain\Common\Models\Model; /** * Class AccountPassData */ class AccountPassData extends Model implements DataModelInterface { protected ?int $id = null; protected ?string $name = null; protected ?string $login = null; protected ?string $pass = null; protected ?string $key = null; protected ?int $parentId = null; protected ?string $mPassHash = null; public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } public function getLogin(): ?string { return $this->login; } public function getPass(): ?string { return $this->pass; } public function getKey(): ?string { return $this->key; } public function getParentId(): ?int { return $this->parentId; } public function getMPassHash(): ?string { return $this->mPassHash; } }