diff --git a/src/Entity/DynDNS.php b/src/Entity/DynDNS.php new file mode 100644 index 0000000..b76cb98 --- /dev/null +++ b/src/Entity/DynDNS.php @@ -0,0 +1,82 @@ +a; + } + + /** + * @return String + */ + public function getAaaa(): string + { + return $this->aaaa; + } + + /** + * @return int + */ + public function getId(): int + { + return $this->id; + } + + /** + * @return String + */ + public function getName(): string + { + return $this->name; + } + + /** + * @param String $a + */ + public function setA(string $a): void + { + $this->a = $a; + } + + /** + * @param String $aaaa + */ + public function setAaaa(string $aaaa): void + { + $this->aaaa = $aaaa; + } + + /** + * @param int $id + */ + public function setId(int $id): void + { + $this->id = $id; + } + + /** + * @param String $name + */ + public function setName(string $name): void + { + $this->name = $name; + } + +} \ No newline at end of file