diff --git a/src/Entity/AddressBookEntry.php b/src/Entity/AddressBookEntry.php index f944311..dbef36c 100644 --- a/src/Entity/AddressBookEntry.php +++ b/src/Entity/AddressBookEntry.php @@ -1,4 +1,11 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ namespace App\Entity; @@ -13,4 +20,44 @@ class AddressBookEntry { // empty body } + + public function getUserid(): int + { + return $this->userid; + } + + public function setUserid(int $userid): void + { + $this->userid = $userid; + } + + public function getFirst(): string + { + return $this->first; + } + + public function setFirst(string $first): void + { + $this->first = $first; + } + + public function getLast(): string + { + return $this->last; + } + + public function setLast(string $last): void + { + $this->last = $last; + } + + public function getNick(): string + { + return $this->nick; + } + + public function setNick(string $nick): void + { + $this->nick = $nick; + } } \ No newline at end of file