diff --git a/src/Models/Achievement.php b/src/Models/Achievement.php new file mode 100644 index 0000000..4d1294e --- /dev/null +++ b/src/Models/Achievement.php @@ -0,0 +1,65 @@ +id = $id; + } + + + + /** + * Gets the Title of achievement. + * + * @return string + */ + public function getTitle() + { + return $this->title; + } + + /** + * Sets the Title of achievement. + * + * @param string $title the title + * + * @return self + */ + public function setTitle($title) + { + $this->title = $title; + + return $this; + } +} \ No newline at end of file