diff --git a/backend/app/Element/Element.php b/backend/app/Element/Element.php new file mode 100644 index 0000000..5e4c6bd --- /dev/null +++ b/backend/app/Element/Element.php @@ -0,0 +1,47 @@ +id; + } + + public function getName(): string + { + return $this->name; + } + + public function getKind(): string + { + return $this->kind; + } + + public function getSet(): Set + { + return $this->set; + } + + public function getParentElement(): ?Element + { + return $this->parentElement; + } + + public function getPosition(): int + { + return $this->position; + } +}