summaryrefslogtreecommitdiff
path: root/src/Entity
diff options
context:
space:
mode:
Diffstat (limited to 'src/Entity')
-rw-r--r--src/Entity/ScoTracking.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Entity/ScoTracking.php b/src/Entity/ScoTracking.php
index f15231f..64e83b2 100644
--- a/src/Entity/ScoTracking.php
+++ b/src/Entity/ScoTracking.php
@@ -9,6 +9,7 @@ use Carbon\Carbon;
class ScoTracking
{
public $userId;
+ public $uuid;
public $sco;
public $scoreRaw;
public $scoreMin;
@@ -40,6 +41,16 @@ class ScoTracking
$this->userId = $userId;
}
+ public function getUuid()
+ {
+ return $this->uuid;
+ }
+
+ public function setUuid($uuid)
+ {
+ $this->uuid = $uuid;
+ }
+
/**
* @return Sco
*/