From 9029eb5ff8e17ae84c146e0ac5620c2e9a0199c2 Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Sat, 8 Aug 2026 22:17:23 +0300 Subject: [PATCH] add element domain --- backend/app/Element/Element.php | 47 +++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 backend/app/Element/Element.php 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; + } +}