diff --git a/Classes/Domain/Model/Job.php b/Classes/Domain/Model/Job.php
index fd1d92efae6f449315d091fc71206b535fe2f070..8c4f8067bc4760f505d606e57b37b33161f76f94 100644
--- a/Classes/Domain/Model/Job.php
+++ b/Classes/Domain/Model/Job.php
@@ -102,6 +102,11 @@ class Job extends AbstractEntity {
 	 */
 	protected $contact;
 
+	/**
+	 * @var string $employmentTypes
+	 */
+	protected $employmentTypes = '';
+
 	/**
 	 * @return string
 	 */
@@ -298,4 +303,17 @@ class Job extends AbstractEntity {
 		$this->sorting = $sorting;
 	}
 
+	/**
+	 * @return string
+	 */
+	public function getEmploymentTypes(): string {
+		return $this->employmentTypes;
+	}
+
+	/**
+	 * @param string $employmentTypes
+	 */
+	public function setEmploymentTypes(string $employmentTypes): void {
+		$this->employmentTypes = $employmentTypes;
+	}
 }