X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/bf5b47d3bc07e7d3259a4e9cc740928d039ce47d..9cdff44c26cfca1c49917c4b1127346407432984:/Entity/Application.php?ds=sidebyside

diff --git a/Entity/Application.php b/Entity/Application.php
index c922932..2e8cca5 100644
--- a/Entity/Application.php
+++ b/Entity/Application.php
@@ -11,6 +11,16 @@ class Application {
 	 */
 	private $id;
 
+	/**
+	 * @var float
+	 */
+	private $score;
+
+	/**
+	 * @var \DateTime
+	 */
+	private $canceled;
+
 	/**
 	 * @var \DateTime
 	 */
@@ -52,6 +62,50 @@ class Application {
 		return $this->id;
 	}
 
+	/**
+	 * Set score
+	 *
+	 * @param float $score
+	 *
+	 * @return Application
+	 */
+	public function setScore($score) {
+		$this->score = $score;
+
+		return $this;
+	}
+
+	/**
+	 * Get score
+	 *
+	 * @return float
+	 */
+	public function getScore() {
+		return $this->score;
+	}
+
+	/**
+	 * Set canceled
+	 *
+	 * @param \DateTime $canceled
+	 *
+	 * @return Application
+	 */
+	public function setCanceled($canceled) {
+		$this->canceled = $canceled;
+
+		return $this;
+	}
+
+	/**
+	 * Get canceled
+	 *
+	 * @return \DateTime
+	 */
+	public function getCanceled() {
+		return $this->canceled;
+	}
+
 	/**
 	 * Set created
 	 *