. */ namespace SP\DataModel; use SP\Domain\Common\Adapters\DataModel; use SP\Domain\Common\Adapters\DataModelInterface; /** * Class ItemData * * @package SP\DataModel */ class ItemData extends DataModel implements DataModelInterface { protected ?int $id = null; protected ?string $name = null; public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } }