<?php declare(strict_types=1);
namespace WbnPromotionBanner\Struct;
use Shopware\Core\Content\Category\CategoryCollection;
use Shopware\Core\Framework\Struct\Struct;
class CategoryListingStruct extends Struct
{
/**
* @var CategoryCollection
*/
private $categories;
public function getCategories(): CategoryCollection
{
return $this->categories;
}
public function setCategories(CategoryCollection $categoryCollection): void
{
$this->categories = $categoryCollection;
}
}