+ /**
+ * Set hat
+ *
+ * @param bool $hat
+ *
+ * @return User
+ */
+ public function setHat(bool $hat) {
+ $this->hat = $hat;
+
+ return $this;
+ }
+
+ /**
+ * Get hat
+ *
+ * @return bool
+ */
+ public function getHat(): bool {
+ return $this->hat;
+ }