. */ namespace SP\Domain\Common\Models; /** * Interface ItemWithIdAndNameModel */ interface ItemWithIdAndNameModel { public function getId(): ?int; public function getName(): ?string; }