<?php declare(strict_types=1);
namespace Acris\ShopSwitch\Components\Struct;
use Shopware\Core\Framework\Struct\Struct;
class ShopSwitchCheckedStruct extends Struct
{
/**
* @var string
*/
private $domainId;
public function __construct(string $domainId)
{
$this->domainId = $domainId;
}
/**
* @return string
*/
public function getDomainId(): string
{
return $this->domainId;
}
/**
* @param string $domainId
*/
public function setDomainId(string $domainId): void
{
$this->domainId = $domainId;
}
}