. */ namespace SP\Domain\Common\Out; /** * Interface DataModelInterface * * @package SP\DataModel */ interface DataModelInterface { public function getId(): ?int; public function getName(): ?string; }