Files
kupshop/bundles/External/ZNZBundle/Dto/B2BFeedDefinition.php
2025-08-02 16:30:27 +02:00

19 lines
335 B
PHP

<?php
declare(strict_types=1);
namespace External\ZNZBundle\Dto;
class B2BFeedDefinition
{
public function __construct(
public string $category,
public string $userHash,
public string $format,
public string $currency,
public string $type,
public string $language,
) {
}
}