<?php declare(strict_types=1);
namespace Dvdw\PlatformChoice\System\SalesChannel\Struct;
use Shopware\Core\Framework\Struct\Struct;
class EncodedTokenExtension extends Struct
{
public CONST KEY = 'encodedToken';
protected string $encoded;
public function __construct(string $encoded)
{
$this->encoded = $encoded;
}
public function getEncoded(): string
{
return $this->encoded;
}
}