. */ namespace SP\Domain\Config\Models; use SP\Domain\Common\Models\Model; /** * Class Config */ class Config extends Model { protected ?string $parameter = null; protected ?string $value = null; public function getParameter(): ?string { return $this->parameter; } public function getValue(): ?string { return $this->value; } }