Forgot the class with the changes

This commit is contained in:
Andreas Kristiansen
2024-10-12 08:37:16 +02:00
parent 098d42ff04
commit c8e0a8a8f0

View File

@@ -12,6 +12,7 @@ class QSO
private string $qsoID;
private string $qsoDateTime;
private string $de;
private string $stationname;
private string $dx;
private string $mode;
private string $submode;
@@ -223,6 +224,8 @@ class QSO
$this->orbit = $data['orbit'] ?? '';
$this->contest = $data['contestname'] ?? '';
$this->stationname = $data['station_profile_name'] ?? '';
}
/**
@@ -980,7 +983,8 @@ class QSO
'dok' => $this->getFormattedDok(),
'wwff' => $this->getFormattedWwff(),
'sig' => $this->getFormattedSig(),
'continent' => $this->continent
'continent' => $this->continent,
'stationname' => $this->stationname
];
}